blob: 7076ef853e0bc93738913e15708caef9cc4c6ba6 [file] [log] [blame]
// Copyright (C) 2015 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 22.2.6
esid: sec-properties-of-typedarray-prototype-objects
description: >
Int32Array.prototype is not a TypedArray instance object.
info: |
A TypedArray prototype object is an ordinary object. It does not have
a [[ViewedArrayBuffer]] or any other of the internal slots that are
specific to TypedArray instance objects.
features: [TypedArray]
---*/
assert.throws(TypeError, function() {
Int32Array.prototype.buffer;
});