ahatanak added a comment.

I had something like the following code in mind  (which is not invalid). Does 
usingdecl Bar::C hide Foo::C ?

  namespace Foo {
      class C { };
  }
  namespace Bar { class C { }; }
  
  using Foo::C;
  {
  using Bar::C;
  }




Repository:
  rL LLVM

https://reviews.llvm.org/D28514



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to