mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
19 lines
329 B
Java
19 lines
329 B
Java
package pck;
|
|
import static pck.D.foo;
|
|
import static pck.C.foo;
|
|
|
|
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();
|
|
}
|
|
} |