Home | History | Annotate | Download | only in namespace.udir
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 
      3 // <rdar://problem/8296180>
      4 typedef int pid_t;
      5 namespace ns {
      6   typedef int pid_t;
      7 }
      8 using namespace ns;
      9 pid_t x;
     10 
     11 struct A { };
     12 namespace ns {
     13   typedef ::A A;
     14 }
     15 A a;
     16