aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ValWithLabel.java
blob: 2d046e93d683ed195a22ebab19c4ebd4887c836e (plain)
1
2
3
4
5
6
7
8
9
10
public class ValWithLabel {
	{
		LABEL:
		for (final java.lang.String x : new String[0]) {
			if (x.toLowerCase() == null) {
				continue LABEL;
			}
		}
	}
}