Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
codegen
/
box
/
strings
/
surrogatePair.kt
blob: e220ce56b14db31fe9ad92402b64e6cb7a14e677 [
file
]
// 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("")}"
}