Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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("")}"
}