Files
kotlin/compiler/testData/codegen/box/objects/kt1047.kt

14 lines
239 B
Kotlin
Vendored

public open class Test() {
open public fun test() : Unit {
System.out?.println(hello)
}
companion object {
private val hello : String? = "Hello"
}
}
fun box() : String {
Test().test()
return "OK"
}