blob: 2a6eb9c405b74f967cb3a3ce1a3e5e0c518ba1f1 [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 can't be used as a constructor
es5id: 15.2.4.4_A7
description: Checking if creating "new Object.prototype.valueOf" fails
---*/
var FACTORY = Object.prototype.valueOf;
assert.throws(TypeError, function() {
new FACTORY;
});