2ab553243c
(cherry picked from commit e2e761e)
13 lines
154 B
Kotlin
Vendored
13 lines
154 B
Kotlin
Vendored
class Foo {
|
|
class Bar {
|
|
fun foo() {}
|
|
}
|
|
}
|
|
|
|
class Bar {
|
|
fun foo() {}
|
|
}
|
|
|
|
fun use() {
|
|
val f: (Foo.Bar) -> Unit = { <caret>it.foo() }
|
|
} |