Sign in
webkit
/
WebKit
/
63c63479e42d5d7cd9e5c20fa3c0adb62aed122e
/
.
/
JSTests
/
stress
/
inline-new-symbol-dfg-undefined-first-arg.js
blob: 06bf1810c66d2af1b0661b1e44597bbd094e1ea0 [
file
] [
log
] [
blame
]
function
assert
(
b
)
{
if
(!
b
)
throw
new
Error
;
}
function
foo
(
arg
)
{
return
Symbol
(
arg
);
}
noInline
(
foo
);
for
(
let i
=
0
;
i
<
10000
;
++
i
)
{
assert
(
foo
(
undefined
).
description
===
undefined
);
}