Files
2023-09-18 11:42:55 +00:00

10 lines
174 B
Java

// "Unroll loop" "true-preview"
class X {
void test() {
<caret>for (int x : new int[]{1}) {
int y = x + 1;
System.out.println(y);
}
int y = 2;
}
}