// "Collapse into loop" "true-preview" class X { void test() { for (int i = 10; i > 6; i--) { System.out.println("Item: "+ i); } } }