class C { int f(boolean b) { int i = 0; if (b) { i = 1; } else { i = 2; } return i; } }