blob: 5bab458f6b3e22700a028c60f8f5824ceb2be0c1 [file] [log] [blame]
import foo.*;
class Goo {
void method(Foo o) {
if (o instanceof FooImpl) {
((FooImpl) o).consume();<caret>
}
}
}