blob: fd3b287e0d53819c9ca70614761a70bc6b202c92 [file] [log] [blame]
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.copywithin
description: >
Return abrupt from ToInteger(start).
info: |
22.1.3.3 Array.prototype.copyWithin (target, start [ , end ] )
...
8. Let relativeStart be ToInteger(start).
9. ReturnIfAbrupt(relativeStart).
...
---*/
var o1 = {
valueOf: function() {
throw new Test262Error();
}
};
assert.throws(Test262Error, function() {
[].copyWithin(0, o1);
});