blob: 2b9a406f4ef7b64a903bfef7f3d7b178eca67cf6 [file] [log] [blame]
class Test implements I {
A myField;
A getMyField(){
return myField;
}
void foo() {
myField.foo();
}
void bar(I i) {
i.foo();
}
}