Name hiding through nesting can occur as a result of nesting namespaces or types within namespaces, as a result of nesting types within classes or structs, and as a result of parameter and local variable declarations.
[Example: In the example within the F method, the instance variable i is hidden by the local variable i, but within the G method, i still refers to the instance variable. end example]
When a name in an inner scope hides a name in an outer scope, it hides all overloaded occurrences of that name. [Example: In the example the call F(1) invokes the F declared in Inner because all outer occurrences of F are hidden by the inner declaration. For the same reason, the call F("Hello") results in a compile-time error. end example]