Backed out changeset 1b14354719c0 (bug 1895254) for causing bustages on NavigationTra...
[gecko.git] / js / src / tests / test262 / language / module-code / parse-err-decl-pos-export-function-expr.js
blobb1b4d041f468802661b6edf2a699a3874f5a55f1
1 // |reftest| error:SyntaxError module
2 // Copyright (C) 2016 the V8 project authors. All rights reserved.
3 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 description: Expression cannot contain an `export` declaration
6 esid: sec-modules
7 negative:
8   phase: parse
9   type: SyntaxError
10 flags: [module]
11 ---*/
13 $DONOTEVALUATE();
15 (function() { export default null; });