public class AlwaysFalseForLoop { void test() { int i = 0; i++; } void test2() { for(int j=0; false; j++) { } } }