[javascriptcore-test262-automation] Changes from https://github.com/webkit/webkit.git at sha 65db7e4aa7 on Sat Sep 15 2018 18:23:10 GMT+0000 (Coordinated Universal Time)

This commit is contained in:
test262-automation 2018-09-15 18:26:21 +00:00 committed by Rick Waldron
parent 3166523832
commit e339ea6c8c
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
//@ runDefault("--verboseValidationFailure=true")
function foo() {
arguments.length;
}
let a = 0;
for (var i = 0; i < 1000000; i++) {
a += foo();
}