blob: d8459fcd72a0573e1b35c6a2e934997915670ed6 [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: |
Since the Object prototype object is not a function, it has not
[[create]] method
es5id: 15.2.4_A4
description: Checking if creating "new Object.prototype" fails
---*/
assert.throws(TypeError, function() {
new Object.prototype;
});