blob: 4dba7b991b3602c42a4b5a4afaf6f03060a88123 [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: The join property of Array has not prototype property
esid: sec-array.prototype.join
es5id: 15.4.4.5_A6.6
description: Checking Array.prototype.join.prototype
---*/
//CHECK#1
if (Array.prototype.join.prototype !== undefined) {
$ERROR('#1: Array.prototype.join.prototype === undefined. Actual: ' + (Array.prototype.join.prototype));
}