mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-14 11:19:22 +07:00
18 lines
287 B
Java
18 lines
287 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(){}
|
|
}
|
|
}
|
|
|
|
class C extends A<Integer>{}
|
|
|
|
{
|
|
new C().new B<Boolean>().getT().<ref>byteValue();
|
|
}
|
|
} |