1 package com.puppycrawl.tools.checkstyle.main;
2
3 public class InputMainGenerateChecksAndFilesSuppressions {
4 private int low = 0;
5 private int high = 0;
6
7 private int arr[] = null;
8
9
10 public void test1() throws RuntimeException {
11
12 for (int i = low; i < 100; i++) {
13 for (int j = low; j < 100; j++) {
14 for (int k = low; k < 100; k++) {
15
16 }
17 }
18 }
19 }
20
21 public void test2(int val) throws Error {
22 high = val;
23 }
24
25 public void test3() throws Throwable {}
26
27 public void Test4() {}
28 }