summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/isFrozen/15.2.3.12-3-13.js
blob: ca4e2920a88f3495091f54e2ad9be496e8aaddbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 15.2.3.12-3-13
description: >
    Object.isFrozen returns false for all built-in objects
    (Number.prototype)
includes: [runTestCase.js]
---*/

function testcase() {
  var b = Object.isFrozen(Number.prototype);
  if (b === false) {
    return true;
  }
 }
runTestCase(testcase);