blob: 98e6aded08a7221cce21f45cad28ef56ae7bae1e [file] [log] [blame]
// export-from should throw SyntaxError until it's implemented.
var caught = false;
try {
eval("export { a } from 'b';");
} catch (e) {
caught = true;
}
assertEq(caught, true);