mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
15 lines
257 B
Java
15 lines
257 B
Java
class Test <T>{
|
|
{
|
|
Test<Test<Test>> test = new Test<Test>();
|
|
{
|
|
test.put("");
|
|
{
|
|
test.get().get().get().<caret>get();
|
|
}
|
|
}
|
|
}
|
|
|
|
T get(){ return null; }
|
|
void put(T x){}
|
|
}
|