Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/argumentWithReceiver2.kt.after
T
2020-05-27 02:38:39 +09:00

14 lines
122 B
Plaintext
Vendored

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