blob: 325e364621d0a1c5400ebd48c6d3ff1df1fa479f [file] [log] [blame]
class Test {
int method(int a, int b, int anObject) {
return anObject;
}
int i;
}
class XTest {
int n() {
Test t;
return t.method(1, 2, t.i);
}
}