blob: f53d672ec17144aba20dbe661f8b2d469c9f2ff0 [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.foreach
description: Array.prototype.forEach applied to null
---*/
assert.throws(TypeError, function() {
Array.prototype.forEach.call(null); // TypeError is thrown if value is null
});