blob: 4bd81856679c95aa03fad08451a5bb6c90d1e416 [file] [log] [blame]
class Test {
void foo(Object o) {
<selection>
if (o instanceof A1) {
((A1)o).doSmth();
}
</selection>
}
}
class A1 {}