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

13 lines
211 B
Java

// "Unroll loop" "true-preview"
class X {
void test() {
{
int y = 1 + 1;
System.out.println(y);
}
{
int y = 2 + 1;
System.out.println(y);
}
}
}