blob: 61f81b658f58ac257427d9b47bcc21cccc6fb5fe [file] [log] [blame]
class Foreign {
void foo(Test test) {
test.field++;
}
}
class Test {
int field;
void bar () {
new Foreign().foo(this);
}
}