class C { void m() { f(1, 2); } void f(int x, int y) { if (x == 0 || y == 0) { } } }