blob: 92a066edc114d0869371b80f728f70731dc9ffeb [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001// Copyright 2014 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
5[].__defineSetter__(0, function() { });
6function f(a,i,v) { a[i] = v; }
7a = [0,0,0];
8f(a,0,5);
9a = new Float32Array(5);
10f(a,2,5.5);