Files
kotlin/compiler/testData/codegen/box/unit/UnitValue.kt
2016-11-09 21:41:12 +03:00

9 lines
177 B
Kotlin
Vendored

// 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"
}