mirror of
https://github.com/tc39/test262.git
synced 2025-09-21 09:07:57 +02:00
11 lines
206 B
JavaScript
11 lines
206 B
JavaScript
/*---
|
|
description: >
|
|
`yield` is not a valid IdentifierReference in an AssignmentProperty within
|
|
strict mode code.
|
|
es6id: 12.14.5
|
|
flags: [onlyStrict]
|
|
negative: SyntaxError
|
|
---*/
|
|
|
|
var { yield } = {};
|