aboutsummaryrefslogtreecommitdiff
path: root/test/pretty/resource/before/Switch12.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-04-24 13:52:17 +0200
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-04-24 13:52:17 +0200
commitccaefff69fc021048ac6918948a0cae29e045b76 (patch)
treeded9306d5f0b895b13a231b291e7dd01a850163d /test/pretty/resource/before/Switch12.java
parent031da25e35cc3ca3bdc1e2783415d27fe83dc8d9 (diff)
downloadlombok-ccaefff69fc021048ac6918948a0cae29e045b76.tar.gz
lombok-ccaefff69fc021048ac6918948a0cae29e045b76.tar.bz2
lombok-ccaefff69fc021048ac6918948a0cae29e045b76.zip
[jdk12] adding support for the new nodes introduced for the improvements to switch statements, and the ‘switch expression’ preview feature, as well as support for the concept of preview features in general.
Diffstat (limited to 'test/pretty/resource/before/Switch12.java')
-rw-r--r--test/pretty/resource/before/Switch12.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/pretty/resource/before/Switch12.java b/test/pretty/resource/before/Switch12.java
new file mode 100644
index 00000000..f1bd8a79
--- /dev/null
+++ b/test/pretty/resource/before/Switch12.java
@@ -0,0 +1,30 @@
+// version 12:
+public class Switch12 {
+ public void basic() {
+ switch (5) {
+ case 1:
+ case 2:
+ System.out.println("OK");
+ break;
+ default:
+ }
+ }
+
+ public void multiCase() {
+ switch (5) {
+ case 1, 2:
+ System.out.println("OK");
+ default:
+ }
+ }
+
+ public int switchExpr() {
+ return switch (5) {
+ case 1, 2 -> 0;
+ case 3 -> {
+ break 10;
+ }
+ default -> 10;
+ } + 10;
+ }
+}