summaryrefslogtreecommitdiff
path: root/src/dstr-assignment/array-rest-put-prop-ref-user-err.case
blob: 0f4cc41d6cb9d9df651f3e77609426266254e0fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
desc: >
    Any error raised as a result of setting the value should be forwarded to
    the runtime.
template: error
es6id: 12.14.5.3
---*/

//- setup
var x = {
  set y(val) {
    throw new Test262Error();
  }
};
//- error
Test262Error
//- elems
[...x.y]
//- vals
[23]