Files
why3/bench/java/expected/IfThenElse.java
2024-10-02 11:28:58 +02:00

23 lines
335 B
Java

/* This file has been extracted from module IfThenElse. */
public class IfThenElse {
public static int testIte(boolean b0, boolean b1) {
int x;
if (b0) {
if (b1) {
x = 2;
} else {
x = 0;
}
} else if (b1) {
x = 3;
} else {
x = 1;
}
return 2 * x;
}
}