59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
14 lines
237 B
Kotlin
14 lines
237 B
Kotlin
public open class Test() {
|
|
open public fun test() : Unit {
|
|
System.out?.println(hello)
|
|
}
|
|
default object {
|
|
private val hello : String? = "Hello"
|
|
}
|
|
}
|
|
|
|
fun box() : String {
|
|
Test().test()
|
|
return "OK"
|
|
}
|