diff options
Diffstat (limited to 'src/test/test3/EmptyCatch.java')
-rw-r--r-- | src/test/test3/EmptyCatch.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/test3/EmptyCatch.java b/src/test/test3/EmptyCatch.java new file mode 100644 index 00000000..bd1122e1 --- /dev/null +++ b/src/test/test3/EmptyCatch.java @@ -0,0 +1,14 @@ +package test3; + +public class EmptyCatch { + public int test(int i) { + try { + i += 200; + } + finally { + i += 10; + } + + return i; + } +} |