test262/test/language/expressions/logical-assignment/lgcl-nullish-assignment-ope...

17 lines
493 B
JavaScript
Raw Normal View History

2020-03-31 07:42:19 +02:00
// 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]
features: [logical-assignment-operators]
2020-03-31 07:42:19 +02:00
---*/
assert.throws(ReferenceError, function() {
unresolved ??= 1;
});