public class C { void second() { test(0); test(1); } void none() { test(0); test(0); } void both() { test(1); test(1); } private void test(int i) {} }