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>Foo.Bar::foo
|
|
} |