System.out.println("Hello. Why did you call me up?"); OverLoadReturn r = new OverLoadReturn(); int i = method(); String s = method();
System.out.println("In int method"); return 0;
// THIS WORKS System.out.println("In String method(String)"); return input;
// EXPECT COMPILE ERROR System.out.println("In String method"); return null;