Files
kotlin-fork/backend.native/tests/external/codegen/box/unit/UnitValue.kt
T
2017-03-13 15:31:46 +03:00

9 lines
177 B
Kotlin

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