blob: 87838bd4cdf2e4cd93222bf02caf638b8033d9b6 [file] [log] [blame]
interface Int {
Int f();
}
class Impl implements Int {
void foo(){}
Impl f() {return this;}
}
class Usage {
void fk(Impl l, Impl ll){
l.f().foo();
final Impl f = ll.f();
f.foo();
}
}