aboutsummaryrefslogtreecommitdiff
path: root/test/pretty/resource/after/MultiCatch.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/pretty/resource/after/MultiCatch.java')
-rw-r--r--test/pretty/resource/after/MultiCatch.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/pretty/resource/after/MultiCatch.java b/test/pretty/resource/after/MultiCatch.java
new file mode 100644
index 00000000..f0414c2e
--- /dev/null
+++ b/test/pretty/resource/after/MultiCatch.java
@@ -0,0 +1,9 @@
+public class MultiCatch {
+ public void test() {
+ try {
+ System.out.println();
+ } catch (IllegalArgumentException | IllegalStateException e) {
+ e.printStackTrace();
+ }
+ }
+} \ No newline at end of file