Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/labeledThis.kt.after
T
2020-06-01 21:42:02 +09:00

11 lines
106 B
Plaintext
Vendored

class A {
fun f1() {}
}
fun myA(func: A.() -> Unit) {
A().func()
}
fun main() {
myA(A::f1)
}