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