Sign in
webkit
/
WebKit
/
14cb98a360e661c1b39a648e8ccc3be2e2757789
/
.
/
JSTests
/
stress
/
bug-188298.js
blob: 6691bff33ca7f315443c3eead862ec97496b774f [
file
] [
log
] [
blame
]
// This test passes if it does not crash.
function
foo
()
{
if
(
1
<
2
);
while
(
true
)
{
if
(
1
<
2
)
break
;
}
}
for
(
var
i
=
0
;
i
<
10000
;
i
++)
foo
();