blob: 02b427b704e3e02d1b8094201e7797c8ce911245 [file] [log] [blame]
class Child {
void foo() {}
void doSmth() {
foo()
}
}
class User {
void meth() {
<selection>new Child().doSmth</selection>()
}
}
-----
class Child {
void foo() {}
void doSmth() {
foo()
}
}
class User {
void meth() {
new Child().foo()
}
}