mirror of https://github.com/tc39/test262.git
10 lines
157 B
JavaScript
10 lines
157 B
JavaScript
|
//@ runDefault("--verboseValidationFailure=true")
|
||
|
|
||
|
function foo() {
|
||
|
arguments.length;
|
||
|
}
|
||
|
let a = 0;
|
||
|
for (var i = 0; i < 1000000; i++) {
|
||
|
a += foo();
|
||
|
}
|