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