class Foo { public int bar(int x) { ;;;; return x; } public static void main(String[] args) { Foo foo = new Foo(); foo.bar(0); } }