blob: 7e0fc0e58173c4345c58f6e08a0d6eb04055cb97 [file] [log] [blame]
class Test {
void foo(Object o) {
<selection>
if (true) {
((A1)o).doSmth();
} else {
o.toString();
}
</selection>
}
}
class A {void doSmth(){}}
class A1 extends A {}