mirror of
https://github.com/tc39/test262.git
synced 2025-07-16 18:44:38 +02:00
23 lines
529 B
Plaintext
23 lines
529 B
Plaintext
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-binary-bitwise-operators-static-semantics-assignmenttargettype
|
|
desc: >
|
|
Static Semantics AssignmentTargetType, Return invalid.
|
|
info: |
|
|
BitwiseANDExpression: BitwiseANDExpression & EqualityExpression
|
|
Static Semantics AssignmentTargetType, Return invalid.
|
|
template: invalid
|
|
negative:
|
|
phase: parse
|
|
type: SyntaxError
|
|
---*/
|
|
|
|
//- assignmenttarget
|
|
x & y
|
|
//- operator
|
|
=
|
|
//- value
|
|
1
|