Files
kotlin-fork/compiler/testData/codegen/box/localClasses/withclosure.kt
T
2018-08-09 14:22:46 +03:00

9 lines
99 B
Kotlin
Vendored

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