summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/compiler/regress-628773.js
blob: cb1fa6fd64abd18f8cefe85b4cf5f33c9c177093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

"use strict";

function foo() {
  for  (var i = 0; i < 10000; i++) {
    try {
      for (var j = 0; j < 2; j++) {
      }
      throw 1;
    } catch(e) {
      if (typeof a == "number") return a && isNaN(b);
    }
  }
}

foo();