41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
9 lines
99 B
Kotlin
9 lines
99 B
Kotlin
fun box(): String {
|
|
val x = "OK"
|
|
class Aaa {
|
|
val y = x
|
|
}
|
|
|
|
return Aaa().y
|
|
}
|