Files
kotlin-fork/compiler/testData/codegen/box/strings/surrogatePair.kt
T
2021-09-01 14:03:56 +00:00

8 lines
201 B
Kotlin
Vendored

// Will be executed on JDK 9, 11, 17
fun test(s: String): String {
return "\ud83c" + s + "\udf09";
}
fun box() : String {
return if (test("") == "\ud83c\udf09") "OK" else "fail: ${test("")}"
}