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

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

var FACTORY = Object.prototype.hasOwnProperty;

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

}