b79719d6f5
- Materialize unit when its value is actually needed. - Special-case Unit_getInstance return type at codegen. It should be a proper Unit object instead of a "void"
9 lines
74 B
Kotlin
Vendored
9 lines
74 B
Kotlin
Vendored
val c = Unit
|
|
val d = c
|
|
|
|
fun box(): String {
|
|
c
|
|
d
|
|
return "OK"
|
|
}
|