mirror of
https://github.com/tc39/test262.git
synced 2025-05-04 15:00:42 +02:00
13 lines
174 B
JavaScript
13 lines
174 B
JavaScript
// 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();
|
|
|