(String args[])
| 31 | static int Hi = 0; |
| 32 | |
| 33 | public static void main(String args[]) throws IOException { |
| 34 | int n = Integer.parseInt(args[0]); |
| 35 | |
| 36 | for (int i=0; i<n; i++) { |
| 37 | some_function(i); |
| 38 | } |
| 39 | System.out.println("Exceptions: HI=" + Hi + " / LO=" + Lo); |
| 40 | } |
| 41 | |
| 42 | public static void some_function(int n) { |
| 43 | try { |
nothing calls this directly
no test coverage detected