Home | History | Annotate | Download | only in SemaCXX
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 // expected-no-diagnostics
      3 
      4 namespace A {
      5   void g();
      6 }
      7 
      8 namespace X {
      9   using A::g;
     10 }
     11 
     12 void h()
     13 {
     14   A::g();
     15   X::g();
     16 }
     17