blob: 1eb9ef72e07e8f12635ebcbb6557d2911769b459 [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.indexof
es5id: 15.4.4.14-1-1
description: Array.prototype.indexOf applied to undefined throws a TypeError
---*/
assert.throws(TypeError, function() {
Array.prototype.indexOf.call(undefined);
});