mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
20 lines
306 B
Java
20 lines
306 B
Java
class Main {
|
|
static <T> T foo(T t) { return null; }
|
|
|
|
static {
|
|
long l1 = foo(foo(1));
|
|
Integer i = 1;
|
|
long l2 = foo(foo(i));
|
|
}
|
|
}
|
|
|
|
class Main1 {
|
|
static <T> T foo(long t) { return null;}
|
|
|
|
static <B> B bar(B t) { return null;}
|
|
|
|
static {
|
|
long l = foo(bar(1));
|
|
}
|
|
}
|