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

public class VarInFor {
	public void enhancedFor() {
		int[] list = new int[] {1, 2};
		for (var shouldBeInt : list) {
			System.out.println(shouldBeInt);
			var shouldBeInt2 = shouldBeInt;
		}
	}
}