// "Collapse into loop" "true-preview" class X { void test() { for (int i = 1; i <= 9; i += 2) { System.out.println(i); } } }