summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/bind/S15.3.4.5_A4.js
blob: 76b679e67c66bb4206fec491938eff8172b1788e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2011 Google Inc.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 15.3.4.5_A4
description: >
    Function.prototype.bind call the original's internal  [[Call]]
    method rather than its .apply method.
---*/

function foo() {}

var b = foo.bind(33, 44);
foo.apply = function() {
  throw new Test262Error("Function.prototype.bind called original's .apply method");
};
b(55, 66);

reportCompare(0, 0);