// "Unroll loop" "true-preview" class Test { void test() { for (int i = 10; 0 <= i; --i) { System.out.println("Hi!" + i); } } }