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