blob: 216ca2186fa954324d59cb6444ac8c16240b22f9 [file] [log] [blame]
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.some
es5id: 15.4.4.17-1-1
description: Array.prototype.some applied to undefined throws a TypeError
---*/
assert.throws(TypeError, function() {
Array.prototype.some.call(undefined);
});