mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
12 lines
261 B
Java
12 lines
261 B
Java
class Test {
|
|
public static void main(String[] args) {
|
|
Foo f = new Foo();
|
|
System.out.println(f.get());
|
|
}
|
|
}
|
|
|
|
class Foo<<warning descr="Type parameter 'T' is never used">T</warning>> {
|
|
public <T1> T1 get() {
|
|
return null;
|
|
}
|
|
} |