mirror of https://github.com/tc39/test262.git
26 lines
665 B
JavaScript
26 lines
665 B
JavaScript
|
// Copyright (C) 2021 the V8 project authors. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
/*---
|
||
|
description: >
|
||
|
AssertClause may not have duplicate keys (import declaration without binding)
|
||
|
esid: sec-modules
|
||
|
info: |
|
||
|
AssertClause:assert{AssertEntries,opt}
|
||
|
|
||
|
- It is a Syntax Error if AssertClauseToAssertions of AssertClause has two
|
||
|
entries a and b such that a.[[Key]] is b.[[Key]].
|
||
|
features: [import-assertions]
|
||
|
flags: [module]
|
||
|
negative:
|
||
|
phase: parse
|
||
|
type: SyntaxError
|
||
|
---*/
|
||
|
|
||
|
$DONOTEVALUATE();
|
||
|
|
||
|
import './import-assertion-2_FIXTURE.js' assert {
|
||
|
test262_a: '',
|
||
|
test262_b: '',
|
||
|
'test262_\u0061': ''
|
||
|
};
|