10 lines
125 B
Kotlin
Vendored
10 lines
125 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
fun box(): String {
|
|
val x = "OK"
|
|
class Aaa {
|
|
val y = x
|
|
}
|
|
|
|
return Aaa().y
|
|
}
|