Files
kotlin-fork/idea/testData/intentions/convertReferenceToLambda/member.kt
T

4 lines
84 B
Kotlin
Vendored

class Owner(val z: Int) {
fun foo(y: Int) = y + z
val x = <caret>this::foo
}