blob: a36c65d88461b56bbb1124fe02005703ace29ac1 [file] [log] [blame]
public class Test {
void foo(Object o) {
if (o instanceof A) {
<selection>((A)o).bar();</selection>
}
}
}
class A {
void bar(){}
}