mirror of https://github.com/tc39/test262.git
[javascriptcore-test262-automation] Changes from https://github.com/webkit/webkit.git at sha 93457d631e on Wed Aug 22 2018 18:13:32 GMT+0000 (Coordinated Universal Time)
This commit is contained in:
parent
d296cc93ee
commit
5032c509e0
|
@ -0,0 +1,12 @@
|
|||
// 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();
|
||||
|
Loading…
Reference in New Issue