blob: 4a9b578597c01ff05abfd09ed9c8d410df3ccb7c [file]
object K : Code("K")
open class Code(val x: String) {
override fun toString() = "$x"
}
class O {
companion object: Code("O")
}
fun box(): String {
return "$O" + "$K" // must not be evaluated during compile time
}