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