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