Sign in
webkit
/
WebKit
/
1f5bafe5ae87a22fbc029b76fb26b628be327746
/
.
/
JSTests
/
stress
/
dfg-get-by-id-should-not-assert-non-null-prediction.js
blob: b6fac0243b7537ecbf51bd7d22d373ec13b634d1 [
file
] [
log
] [
blame
]
//@ runDefault
// This test should not crash.
function
foo
()
{
"use strict"
;
return
--
arguments
[
"callee"
];
};
function
test
()
{
for
(
var
i
=
0
;
i
<
10000
;
i
++)
{
try
{
foo
();
}
catch
(
e
)
{
}
}
}
test
();