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

13 lines
164 B
Plaintext
Vendored

class Foo {
class Bar {
fun foo() {}
}
}
class Bar {
fun foo() {}
}
fun use() {
val f: (Foo.Bar) -> Unit = { bar: Foo.Bar -> bar.foo() }
}