1// 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);
11