class Test { int m() { return 0; } } class X3 { int n() { Test t; return t.m(); } }