Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
JSTests
/
stress
/
value-to-int32-undefined-constant.js
blob: 38b914019b4025a5c2c902ecab0a5db05d36d081 [
file
] [
log
] [
blame
]
function
foo
()
{
return
(
void
0
)
|
0
;
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
10000
;
++
i
)
{
var
result
=
foo
();
if
(
result
!=
0
)
throw
"Error: bad result: "
+
result
;
}