Files
lombok/test/transform/resource/before/VarInFor.java
T
Bulgakov Alexander 710a04607b The @var annotation has been moved to the experimental package.
Added a test of a @var variable with null initialization.
2016-10-26 23:18:47 +03:00

11 lines
231 B
Java

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