mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
testdata for IDEA-67842
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package pck;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
import static pck.D.foo;
|
||||
import static pck.C.foo;
|
||||
|
||||
class C {
|
||||
static <T extends Collection<S>, S> void foo(T x) { }
|
||||
}
|
||||
|
||||
class D {
|
||||
static <T extends List<T>> T foo(T x) { return null; }
|
||||
}
|
||||
|
||||
class B{
|
||||
public static void bar(){
|
||||
List<?> x = foo(null).get(0);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user