Mirror of the JODE repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
jode/jode/test/For.java

17 lines
295 B

package jode.test;
public class For {
boolean nested() {
outer:
for (int i=0; i< 100; i++) {
for (int j=0; j< 100; j++) {
if (i < j)
continue outer;
}
return false;
}
return true;
}
}