test262/test/language/expressions/object/method-definition/name-param-redecl.js

22 lines
448 B
JavaScript

// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
It is a Syntax Error if any element of the BoundNames of
StrictFormalParameters also occurs in the LexicallyDeclaredNames of
FunctionBody.
es6id: 14.3.1
negative:
phase: parse
type: SyntaxError
---*/
$DONOTEVALUATE();
var obj = {
method(param) {
let param;
}
};