brintos

brintos / llvm-project-archived public Read only

0
0
Text · 212 B · 6879cbf Raw
16 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4typedef int pid_t;5namespace ns {6  typedef int pid_t;7}8using namespace ns;9pid_t x;10 11struct A { };12namespace ns {13  typedef ::A A;14}15A a;16