summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/concat/Array.prototype.concat_no-prototype.js
blob: bb5dd7277c599e77e04e0c80285a3295d670a054 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) 2014 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.


/*---
esid: sec-array.prototype.concat
description: Array.prototype.concat no prototype
---*/
assert.sameValue(
  Array.prototype.concat.prototype,
  void 0,
  'The value of Array.prototype.concat.prototype is expected to be void 0'
);

reportCompare(0, 0);