mirror of https://github.com/tc39/test262.git
9 lines
120 B
JavaScript
9 lines
120 B
JavaScript
|
//@ runDefault("--useControlFlowProfiler=true")
|
||
|
|
||
|
function foo() {
|
||
|
for (var x in []) {
|
||
|
o[++x];
|
||
|
}
|
||
|
}
|
||
|
foo()
|