test262/implementation-contributed/javascriptcore/modules/execution-order-tree/11.js

8 lines
172 B
JavaScript

import "./9.js";
import "./10.js";
var global = (Function("return this"))();
if (global.count !== 10)
throw new Error(`bad value ${global.count}`);
global.count = 11;