Sign in
webkit
/
WebKit
/
7e879361fb932be61b4de77d5f6669f663c67d9c
/
.
/
JSTests
/
es6
/
destructuring_with_astral_plane_strings.js
blob: 077a2e00527fa9a5a42fbb28e804772874dd6465 [
file
] [
log
] [
blame
]
function
test
()
{
var
c
;
[
c
]
=
"𠮷𠮶"
;
return
c
===
"𠮷"
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);