Files
kotlin-fork/backend.native/tests/external/codegen/blackbox/unit/UnitValue.kt
T

9 lines
185 B
Kotlin

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS, NATIVE
fun foo() {}
fun box(): String {
return if (foo() == Unit) "OK" else "Fail"
}