mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
9 lines
162 B
Java
9 lines
162 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));
|
|
}
|
|
} |