Files
kotlin-fork/idea/testData/intentions/convertToRun/itReceiver.kt
T

16 lines
257 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
class MyClass {
fun foo1() = Unit
fun foo2() = Unit
fun foo3() = Unit
fun foo4(a: MyClass) {
a.let {
it.foo1()<caret>
it.foo2()
it.foo3()
}
}
}