blob: 8f1969cab3b40bcc5579e47076547f662e7d002e [file] [log] [blame]
// Copyright 2015 Cubane Canada, Inc. All rights reserved.
// See LICENSE for details.
/*---
info: >
GeneratorMethod early SyntaxError when lexical declaration
inside generator shadows parameter name
features: [generators]
es6id: 14.4.1
author: Sam Mikes
description: GeneratorMethod error with lexical shadowing
negative: SyntaxError
---*/
var obj = {
*foo(a) {
const a = 3;
}
};