Files
kotlin/compiler/testData/codegen/box/callableReference/function/booleanNotIntrinsic.kt
2018-08-09 14:22:50 +03:00

7 lines
173 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
fun box(): String {
if ((Boolean::not)(true) != false) return "Fail 1"
if ((Boolean::not)(false) != true) return "Fail 2"
return "OK"
}