Files
kotlin-fork/compiler/testData/codegen/box/compatibility/privateCompanionObject.kt
T

11 lines
142 B
Kotlin
Vendored

class Test {
private companion object {
val res = "OK"
}
fun res() = res
}
fun box(): String {
return Test().res()
}