blob: 34bf7d6f21e169f83231305b78b6ecb331a57f3f [file] [log] [blame]
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 15.3.4.5-21-3
description: >
Function.prototype.bind - [[Set]] attribute of 'arguments'
property in 'F' is thrower
---*/
function foo() {}
var obj = foo.bind({});
assert.throws(TypeError, function() {
obj.arguments = 12;
});