public class ConstantConditionBug {
public static void main(String[] args) {
for (int i = 0; i < 2; i++) {
boolean doLockRelease = true;
try {
doLockRelease = false;
break;
} finally {
if (doLockRelease) {
System.out.println("bug");
} else {
System.out.println("no bug");
}
}
}
}
}