Files
kotlin-fork/compiler/testData/codegen/regressions/kt1047.kt
T
2012-02-11 11:48:50 +02:00

13 lines
234 B
Kotlin

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