Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / language / module-code / export-expname-from-star-unpaired-surrogate.js
blobb271c711afa7f655b694fa5d6d49e685f2656811
1 // |reftest| error:SyntaxError module
2 // Copyright (C) 2020 the V8 project authors. All rights reserved.
3 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 description: >
6   ExportSpecifier : ModuleExportName
7   esid: prod-ExportSpecifier
8 info: |
9   ModuleExportName : StringLiteral
11   It is a Syntax Error if IsStringWellFormedUnicode of the StringValue of
12   StringLiteral is *false*.
13 flags: [module]
14 features: [arbitrary-module-namespace-names]
15 negative:
16   phase: parse
17   type: SyntaxError
18 ---*/
20 $DONOTEVALUATE();
22 export "*" as "\uD83D" from "./export-expname_FIXTURE.js";