blob: 14770858e8f03f27236567d7d17afc1e555eebc1 [file] [log] [blame]
// WITH_RUNTIME
// IS_APPLICABLE: false
class MyClass {
fun foo1() = Unit
fun foo2() = Unit
fun foo3() = Unit
fun foo4(a: MyClass) {
this.foo1()<caret>
this.foo2()
this.foo3()
}
}