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