Files
kotlin-fork/compiler/testData/codegen/localcls/withclosure.kt
T
2012-08-22 18:40:37 +03:00

9 lines
99 B
Kotlin

fun box(): String {
val x = "OK"
class Aaa {
val y = x
}
return Aaa().y
}