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