By the language definition, the outer-class method is not visible in the inner class because it is shadowed.
Shadowing is based on name rather than signature. This is a good thing.
Consider the alternative. You could hide a subset of method overloads. Someone else could try to change the arguments in a call, to call one of the other overloaded methods. Simply changing the arguments could cause the recipient object to change. This would be surprising, and could cost time to debug.
From the Java Language Specification, 6.3.1:
Some declarations may be shadowed in part of their scope by another
declaration of the same name, in which case a simple name cannot be
used to refer to the declared entity. A declaration d of a type named
n shadows the declarations of any other types named n that are in
scope at the point where d occurs throughout the scope of d.
...
A declaration d is said to be visible at point p in a program if the
scope of d includes p, and d is not shadowed by any other declaration
at p. When the program point we are discussing is clear from context,
we will often simply say that a declaration is visible.
there could be only one top-level public class per source file, but that was about top-level ones... Sorry about that, gotta delete this misleading comment. – jFrenetic Sep 29 '11 at 17:10