summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/isSealed/15.2.3.11-4-5.js
blob: a5ec0794938db682fa1a2cd3081a1fdd83408af5 (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.11-4-5
description: >
    Object.isSealed returns false for all built-in objects
    (Function.prototype)
includes: [runTestCase.js]
---*/

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