summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/modules/bug-1283448.js
blob: def4d8cc6e84529e2c3a27dd9c112814e96d9f37 (plain)
1
2
3
4
let a = registerModule('a', parseModule("var x = 1; export { x };"));
let b = registerModule('b', parseModule("import { x as y } from 'a';"));
a.__proto__ = {15: 1337};
moduleLink(b);