mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +07:00
testdata for IDEA-67836
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
package pck;
|
||||
import static pck.D.foo;
|
||||
import static pck.C.foo;
|
||||
|
||||
public class C {
|
||||
public static <T> String foo(Comparable<? extends Comparable<T>> x){
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
class D {
|
||||
public static <T> void foo(Comparable<? extends T> x){}
|
||||
}
|
||||
|
||||
class B{
|
||||
public static void bar(){
|
||||
foo(1).toLowerCase();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user