class Test { public int m() { return 0; } } class Test1 { Test t; public int n(int v) { return t.m(); } }