Home | History | Annotate | Download | only in regress
      1 // Copyright 2015 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 // Flass: --allow-natives-syntax --always-opt --gc-interval=163 --stress-compaction
      6 
      7 try { a = f();
      8 } catch(e) {
      9 }
     10 var i = 0;
     11 function f() {
     12    try {
     13      f();
     14    } catch(e) {
     15      i++;
     16      [];
     17    }
     18 }
     19 f();
     20