Files
kotlin-fork/compiler/testData/codegen/box/objects/kt1047.kt
T
Alexander Udalov 41a416da60 Move blackBoxFile() testData to box/ directory
Delete all test methods (and empty test classes), since they'll be
auto-generated
2013-01-28 18:20:17 +04:00

14 lines
235 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"
}