aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/ValWithLabel.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/before/ValWithLabel.java')
-rw-r--r--test/transform/resource/before/ValWithLabel.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/transform/resource/before/ValWithLabel.java b/test/transform/resource/before/ValWithLabel.java
new file mode 100644
index 00000000..f7c3402a
--- /dev/null
+++ b/test/transform/resource/before/ValWithLabel.java
@@ -0,0 +1,11 @@
+import lombok.val;
+
+public class ValWithLabel {
+ {
+ LABEL: for (val x : new String[0]) {
+ if (x.toLowerCase() == null) {
+ continue LABEL;
+ }
+ }
+ }
+} \ No newline at end of file