mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-13 14:00:21 +07:00
15 lines
255 B
Java
15 lines
255 B
Java
class Test <T>{
|
|
{
|
|
Test<Test<Test>> test = new Test<Test>();
|
|
{
|
|
test.put("");
|
|
{
|
|
test.get().get().get().<ref>get();
|
|
}
|
|
}
|
|
}
|
|
|
|
T get(){ return null; }
|
|
void put(T x){}
|
|
}
|