Files
kotlin-fork/js/js.translator/testData/box/objectDeclaration/lambdaInObjectInsideObject.kt
T
2016-09-29 12:00:42 +03:00

11 lines
104 B
Kotlin
Vendored

package foo
object A {
object B {
val lambda = { "OK" }
}
}
fun box() = A.B.lambda()