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

13 lines
156 B
Kotlin
Vendored

package foo
class A() {
fun f(): String {
val z = object {
val c = "OK"
}
return z.c
}
}
fun box() = A().f();