blob: 9ff4791f1308a2f94c980e82a88b48cdadb4344a [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.13-2-18
description: >
Object.isExtensible returns true for all built-in objects
(Number.prototype)
---*/
var e = Object.isExtensible(Number.prototype);
assert.sameValue(e, true, 'e');