summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/prototype/S15.2.4_A4.js
blob: 4502a164783960a1916ddc8eec2212ecfe65469d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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;
}, '`new Object.prototype` throws a TypeError exception');

reportCompare(0, 0);