blob: bfa8382b7642bdeeb7bf7fab1b7f609c21846a4f [file] [log] [blame]
class Foreign {
void foo(Test1 test1) {
test1.field++;
}
}
public abstract class Test1 {
int field;
Foreign myForeign;
void bar () {
myForeign.foo(this);
}
}