aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/ValWithLabel.java
blob: f7c3402af05290141bdede4a11e9d7f567b61ecd (plain)
1
2
3
4
5
6
7
8
9
10
11
import lombok.val;

public class ValWithLabel {
	{
		LABEL: for (val x : new String[0]) {
			if (x.toLowerCase() == null) {
				continue LABEL;
			}
		}
	}
}