aboutsummaryrefslogtreecommitdiff
path: root/test/pretty/resource/after/Switch11.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/pretty/resource/after/Switch11.java')
-rw-r--r--test/pretty/resource/after/Switch11.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/pretty/resource/after/Switch11.java b/test/pretty/resource/after/Switch11.java
new file mode 100644
index 00000000..d24012a2
--- /dev/null
+++ b/test/pretty/resource/after/Switch11.java
@@ -0,0 +1,11 @@
+public class Switch11 {
+ public void basic() {
+ switch (5) {
+ case 1:
+ case 2:
+ System.out.println("OK");
+ break;
+ default:
+ }
+ }
+}