blob: 931f2d41f5a847f29a83c7d342fe9d981e0acdc7 [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: Object.prototype.valueOf has not prototype property
es5id: 15.2.4.4_A6
description: >
Checking if obtaining the prototype property of
Object.prototype.valueOf fails
---*/
//CHECK#1
if (Object.prototype.valueOf.prototype !== undefined) {
$ERROR('#1: Object.prototype.valueOf has not prototype property' + Object.prototype.valueOf.prototype);
}
//