public class AlwaysFalseForLoop { void test() { int i = 0; for(i++; false; System.out.println("oops")) { System.out.println("oops"); } } void test2() { for(int j=0; false; j++) { } } }