blob: 9be2828ea4d8ea30afdbddbf8684373401f83037 (
plain)
1
2
3
4
5
6
|
// |jit-test| error: TypeError
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};
b.declarationInstantiation();
|