bolt/deps/llvm-18.1.8/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udir/p6.cpp

16 lines
212 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
typedef int pid_t;
namespace ns {
typedef int pid_t;
}
using namespace ns;
pid_t x;
struct A { };
namespace ns {
typedef ::A A;
}
A a;