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

13 lines
154 B
Kotlin
Vendored

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