summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/bind/S15.3.4.5_A3.js
blob: 334561651a8bbd58ed7ff0af1dd6a69e898ce442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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_A3
description: Function.prototype.bind must exist
---*/
assert(
  'bind' in Function.prototype,
  'The result of evaluating (\'bind\' in Function.prototype) is expected to be true'
);

reportCompare(0, 0);