Sign in
webkit
/
WebKit
/
919aeb989a73073e2f1d75e53d7d882b3cc61ca8
/
.
/
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
);
}