• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test3;
2 
3 public class EmptyCatch {
test(int i)4     public int test(int i) {
5         try {
6             i += 200;
7         }
8         finally {
9             i += 10;
10         }
11 
12         return i;
13     }
14 }
15