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

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