aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ValWithLabel.java
blob: 4d8eabf2a1f55cbb7ab1d1c71204bfd6d9ab9339 (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;
			}
		}
	}
}