Files
kotlin-fork/compiler/testData/codegen/box/unit/kt3634.kt
T
2020-11-09 16:04:43 +03:00

11 lines
142 B
Kotlin
Vendored

// DONT_TARGET_EXACT_BACKEND: WASM
// WASM_MUTE_REASON: UNIT_ISSUES
val c = Unit
val d = c
fun box(): String {
c
d
return "OK"
}