summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/bind/S15.3.4.5_A2.js
blob: fe00b327a97e2b80785b24ff8919b27d7a4330d7 (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 2011 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: "\"arguments\" of bound function is poisoned (step 21)"
es5id: 15.3.4.5_A2
description: a bound function should fail to find the bound function "arguments"
---*/

function foo() {
  return bar.arguments;
}
var bar = foo.bind({});

function baz() {
  return bar();
}

assert.throws(TypeError, function() {
  baz();
}, 'baz() throws a TypeError exception');

reportCompare(0, 0);