aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/VarInFor.java
blob: f2e95b09e434f625241c018de0d6ee17cc7313b2 (plain)
1
2
3
4
5
6
7
8
9
public class VarInFor {
	public void enhancedFor() {
		int[] list = new int[] {1, 2};
		for (int shouldBeInt : list) {
			System.out.println(shouldBeInt);
			int shouldBeInt2 = shouldBeInt;
		}
	}
}