blob: c7d793bb0e58edc509b9dd0615d50e83a8ef2ee1 [file] [log] [blame]
Ben Murdochc5610432016-08-08 18:44:38 +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
5function f(test, a) {
6 var v;
7 if (test) {
8 v = v|0;
9 }
10 a[v] = 1;
11}
12var v = new String();
13f(false, v);
14f(false, v);
15
16v = new Int32Array(10);
17f(true, v);