mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
24 lines
436 B
Java
24 lines
436 B
Java
class Test {
|
|
public static void foo(int[] i1, int[] i2) {
|
|
}
|
|
|
|
public static <T> void foo(T i1, T i2) {
|
|
}
|
|
|
|
public static final void main(String[] args) throws Exception {
|
|
int[] i = null;
|
|
foo(i, i);
|
|
}
|
|
}
|
|
class Test1 {
|
|
public static void foo(int i1, int i2) {
|
|
}
|
|
|
|
public static <T> void foo(T i1, T i2) {
|
|
}
|
|
|
|
public static final void main(String[] args) throws Exception {
|
|
int[] i = null;
|
|
foo(i, i);
|
|
}
|
|
} |