Files

7 lines
120 B
Kotlin
Vendored

fun box(): String {
val o = object {
inner class A(val value: String = "OK")
}
return o.A().value
}