mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
22 lines
338 B
Java
22 lines
338 B
Java
package pck;
|
|
|
|
import java.util.List;
|
|
|
|
import static pck.C.foo;
|
|
import static pck.D.foo;
|
|
|
|
class C {
|
|
static <T> void foo(List<T> x) { }
|
|
}
|
|
|
|
class D {
|
|
static <T> String foo(List<T[]> x) { return null; }
|
|
}
|
|
|
|
class Main {
|
|
public static void main(String[] args){
|
|
List<String[]> x = null;
|
|
foo(x).toLowerCase();
|
|
}
|
|
}
|