blob: a3d4e3b16040cb3607e8722413b036437740a7ff [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: Function.prototype.toString has not prototype property
es5id: 15.3.4.2_A6
description: >
Checking if obtaining the prototype property of
Function.prototype.toString fails
---*/
//CHECK#1
if (Function.prototype.toString.prototype !== undefined) {
$ERROR('#1: Function.prototype.toString has not prototype property'+Function.prototype.toString.prototype);
}