mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 09:50:57 +07:00
12 lines
296 B
Java
12 lines
296 B
Java
package com.badinterface;
|
|
|
|
import java.util.List;
|
|
import java.util.concurrent.Future;
|
|
|
|
class Test {
|
|
private void foo(BadInterface2 b, BadInterface3 b3) {
|
|
final Future<? extends Number> process = b.process();
|
|
final Future<? extends List<? extends Number>> process3 = b3.process();
|
|
}
|
|
}
|