Sign in
webkit
/
WebKit
/
031545c904ac108f0063861f58a3e4e2a299b0c0
/
.
/
JSTests
/
es6
/
Symbol_can_convert_with_String.js
blob: 2c757bbff058786ee524af2d85212d0f807a1905 [
file
] [
log
] [
blame
]
function
test
()
{
return
String
(
Symbol
(
"foo"
))
===
"Symbol(foo)"
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);