13 lines
164 B
Plaintext
Vendored
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() }
|
|
} |