11 lines
104 B
Kotlin
Vendored
11 lines
104 B
Kotlin
Vendored
package foo
|
|
|
|
object A {
|
|
object B {
|
|
val lambda = { "OK" }
|
|
}
|
|
}
|
|
|
|
fun box() = A.B.lambda()
|
|
|