Home | History | Annotate | Download | only in regress
      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() { });
      6 function f(a,i,v) { a[i] = v; }
      7 a = [0,0,0];
      8 f(a,0,5);
      9 a = new Float32Array(5);
     10 f(a,2,5.5);
     11