blob: 07103f079164a36151ad4199b67de2744c4e12a1 [file]
// TARGET_BACKEND: JVM
// TARGET_BACKEND: JVM_IR
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"
}