705a081919
#KT-5214 Fixed
11 lines
161 B
Kotlin
11 lines
161 B
Kotlin
import kotlin.platform.*
|
|
|
|
[platformName("bar")]
|
|
fun foo() = "foo"
|
|
|
|
fun box(): String {
|
|
val f = foo()
|
|
if (f != "foo") return "Fail: $f"
|
|
|
|
return "OK"
|
|
} |