On Fri, Mar 27, 2009 at 11:42 PM, Anders Carlsson <andersca at mac.com> wrote:
> + // FIXME: Can the result of a namespace lookup ever be ambiguous?
Something like the following?
namespace a { namespace b { int x; } }
namespace b { int x; }
using namespace a;
namespace d = b;
-Eli