Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Object / assign / target-set-not-writable.js
blob930ddb83028e4cbfa6e040db5a4ee0d293b7d22d
1 // Copyright (C) 2015 the V8 project authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
3 /*---
4 es6id: 19.1.2.1
5 description: Errors thrown during definition of target object attributes
6 info: |
7     [...]
8     5. For each element nextSource of sources, in ascending index order,
9     [...]
10     c. Repeat for each element nextKey of keys in List order,
11        [...]
12        iii. if desc is not undefined and desc.[[Enumerable]] is true, then
13             [...]
14             3. Let status be Set(to, nextKey, propValue, true).
15             4. ReturnIfAbrupt(status).
16 ---*/
18 var target = {};
19 Object.defineProperty(target, 'attr', {
20   writable: false
21 });
23 assert.throws(TypeError, function() {
24   Object.assign(target, {
25     attr: 1
26   });
27 });
29 reportCompare(0, 0);