summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Function/prototype/call/S15.3.4.4_A12.js
blob: 1ad9112456ecfd1a1207abffd712db59ab93aa9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: Function.prototype.call has not prototype property
es5id: 15.3.4.4_A12
description: >
    Checking if obtaining the prototype property of
    Function.prototype.call fails
---*/
assert.sameValue(
  Function.prototype.call.prototype,
  undefined,
  'The value of Function.prototype.call.prototype is expected to equal undefined'
);

reportCompare(0, 0);