2015-07-17 17:34:33 +02:00
|
|
|
// Copyright (C) 2015 the V8 project authors. All rights reserved.
|
2015-05-28 20:41:22 +02:00
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
|
|
es6id: 10.2.1
|
|
|
|
description: >
|
|
|
|
It is a Syntax Error if any element of the LexicallyDeclaredNames of
|
|
|
|
ModuleItemList also occurs in the VarDeclaredNames of ModuleItemList.
|
|
|
|
flags: [module]
|
|
|
|
features: [let]
|
2015-06-17 21:44:54 +02:00
|
|
|
negative: SyntaxError
|
2015-05-28 20:41:22 +02:00
|
|
|
---*/
|
|
|
|
|
|
|
|
let x;
|
|
|
|
var x;
|