mirror of https://github.com/tc39/test262.git
16 lines
452 B
JavaScript
16 lines
452 B
JavaScript
|
// Copyright (c) 2020 Ecma International. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
|
||
|
/*---
|
||
|
esid: sec-assignment-operators-runtime-semantics-evaluation
|
||
|
description: >
|
||
|
ReferenceError is thrown if the LeftHandSideExpression of a Logical
|
||
|
Assignment operator(&&=) evaluates to an unresolvable reference
|
||
|
flags: [onlyStrict]
|
||
|
|
||
|
---*/
|
||
|
|
||
|
assert.throws(ReferenceError, function() {
|
||
|
unresolved &&= 1;
|
||
|
});
|