summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/prototype/propertyIsEnumerable/S15.2.4.7_A7.js
blob: 34821898f3a2a9c9408ff1d0b6b620cf6be167f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: Object.prototype.propertyIsEnumerable can't be used as a constructor
es5id: 15.2.4.7_A7
description: >
    Checking if creating "new Object.prototype.propertyIsEnumerable"
    fails
includes:
    - $PRINT.js
---*/

var FACTORY = Object.prototype.propertyIsEnumerable;

try {
  var instance = new FACTORY;
  $ERROR('#1: Object.prototype.propertyIsEnumerable can\'t be used as a constructor');
} catch (e) {
  $PRINT(e);

}