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