early-dup-export-dflt.js 420 B

1234567891011121314151617
  1. // Copyright (C) 2015 the V8 project authors. All rights reserved.
  2. // This code is governed by the BSD license found in the LICENSE file.
  3. /*---
  4. es6id: 15.2.1.1
  5. description: >
  6. It is a Syntax Error if the ExportedNames of ModuleItemList contains any
  7. duplicate entries.
  8. flags: [module]
  9. negative:
  10. phase: parse
  11. type: SyntaxError
  12. ---*/
  13. $DONOTEVALUATE();
  14. export default var x = null;
  15. export default var x = null;