blob: 5029c30a7ba84f334c7bcffddac01e73c6a0e440 [file] [log] [blame]
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){}
}