mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-14 00:01:54 +07:00
16 lines
265 B
Java
16 lines
265 B
Java
|
|
class Test{
|
|
|
|
class A <T>{
|
|
B x;
|
|
class B <Z>{
|
|
public void put(T x, Z y){}
|
|
public Z getZ(){}
|
|
public T getT(){}
|
|
}
|
|
}
|
|
|
|
{
|
|
new A<Integer>().new B<Boolean>().getZ().<ref>booleanValue();
|
|
}
|
|
} |