Files
kotlin-fork/compiler/testData/codegen/box/localClasses/withclosure.kt
T
2018-06-28 12:26:41 +02:00

10 lines
125 B
Kotlin
Vendored

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