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