blob: 4f4792b43fe8e97cbb7bb222d7f3a4f6ee91185b [file] [log] [blame] [edit]
// 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]