blob: 68c89b2526812031fe15de0bf3d735ee43d07a75 [file] [log] [blame]
interface Foo { void foo(); }
interface Bar { void bar(); }
public class A {
void foo(Foo l) {
if (l instanceof Bar) {
l.<caret>
}
}
}