コード例 #1
0
ファイル: T7093325.java プロジェクト: karianna/jdk8_tl
  public static void main(String... args) throws Exception {
    for (CatchArity ca : CatchArity.values()) {
      for (StatementKind stmt0 : StatementKind.values()) {
        if (ca.ordinal() == 0) {
          pool.execute(new T7093325(ca, stmt0));
          continue;
        }
        for (StatementKind stmt1 : StatementKind.values()) {
          if (ca.ordinal() == 1) {
            pool.execute(new T7093325(ca, stmt0, stmt1));
            continue;
          }
          for (StatementKind stmt2 : StatementKind.values()) {
            if (ca.ordinal() == 2) {
              pool.execute(new T7093325(ca, stmt0, stmt1, stmt2));
              continue;
            }
            for (StatementKind stmt3 : StatementKind.values()) {
              if (ca.ordinal() == 3) {
                pool.execute(new T7093325(ca, stmt0, stmt1, stmt2, stmt3));
                continue;
              }
              for (StatementKind stmt4 : StatementKind.values()) {
                if (ca.ordinal() == 4) {
                  pool.execute(new T7093325(ca, stmt0, stmt1, stmt2, stmt3, stmt4));
                  continue;
                }
                for (StatementKind stmt5 : StatementKind.values()) {
                  pool.execute(new T7093325(ca, stmt0, stmt1, stmt2, stmt3, stmt4, stmt5));
                }
              }
            }
          }
        }
      }
    }

    checkAfterExec();
  }