class Test { int method(int a, int b) { return a + b; } } class XTest { int n() { Test t; return t.method(1, 2); } }