public class TestDefaultPackagePoint { public static void main(String[] args) { new TestDefaultPackagePoint().foo(5, 6); } public void foo(int xer, int yer){ System.out.println(xer+yer); } }