blob: 0872dd4ca520fe1ca52a85a0f61e41512e820564 [file] [log] [blame]
// 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-22
description: Object.isFrozen returns false for all built-in objects (RangeError)
---*/
var b = Object.isFrozen(RangeError);
assert.sameValue(b, false, 'b');