blob: d8a6a3af7977d085428b88b25a90c4f140d1c498 [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');