summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/apply/S15.3.4.3_A12.js
blob: 50ea57ee82c4fba0491c37be4ebb25ac1ea8834e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: Function.prototype.apply has not prototype property
es5id: 15.3.4.3_A12
description: >
    Checking if obtaining the prototype property of
    Function.prototype.apply fails
---*/

//CHECK#1
if (Function.prototype.apply.prototype !== undefined) {
  $ERROR('#1: Function.prototype.apply has not prototype property' + Function.prototype.apply.prototype);
}