mirror of https://github.com/tc39/test262.git
Add test for duplicated top level function declarations in modules
This commit is contained in:
parent
2c4f2665ec
commit
ddff7c5ded
|
@ -0,0 +1,25 @@
|
||||||
|
// Copyright 2021 Chengzhong Wu. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
|
/*---
|
||||||
|
es6id: 10.2.1
|
||||||
|
description: >
|
||||||
|
It is a Syntax Error if the LexicallyDeclaredNames of ModuleItemList
|
||||||
|
contains any duplicate entries.
|
||||||
|
At the top level of a Module, function declarations are treated like
|
||||||
|
lexical declarations rather than like var declarations.
|
||||||
|
flags: [module]
|
||||||
|
negative:
|
||||||
|
phase: parse
|
||||||
|
type: SyntaxError
|
||||||
|
---*/
|
||||||
|
|
||||||
|
$DONOTEVALUATE();
|
||||||
|
|
||||||
|
function x() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
async function x() {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue