Mypal/js/src/jit-test/tests/modules/namespace-import-compilatio...

18 lines
267 B
JavaScript

// |jit-test| module
import * as ns from 'module1.js';
let other = ns;
const iterations = 2000;
let x = 0;
for (let i = 0; i < iterations; i++) {
if (i == iterations / 2)
other = 1;
x += other.a;
}
assertEq(other.a, undefined);
assertEq(x, NaN);