mirror of https://github.com/tc39/test262.git
16 lines
515 B
JavaScript
16 lines
515 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* Function.prototype.call has not prototype property
|
|
*
|
|
* @path ch15/15.3/15.3.4/15.3.4.4/S15.3.4.4_A12.js
|
|
* @description Checking if obtaining the prototype property of Function.prototype.call fails
|
|
*/
|
|
|
|
//CHECK#1
|
|
if (Function.prototype.call.prototype !== undefined) {
|
|
$ERROR('#1: Function.prototype.call has not prototype property'+Function.prototype.call.prototype);
|
|
}
|
|
|