blob: 7e89b569c1f03eea8815c334f3cb4a5bf1bc34a0 [file] [log] [blame]
Ben Murdoch61f157c2016-09-16 13:49:30 +01001// Copyright 2016 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5Object.defineProperty(Int32Array.prototype.__proto__, 'length', {
6 get: function() { throw new Error('Custom length property'); }
7});
8
9var a = Math.random();
10
11// This tests MathRandomRaw.
12var v0 = new Set();
13var v1 = new Object();
14v0.add(v1);