From 222e2a7620e6520ffaf4fc4e69d79c18da31542e Mon Sep 17 00:00:00 2001 From: "Zancanaro; Carlo" Date: Mon, 24 Sep 2012 09:58:17 +1000 Subject: Add the clang library to the repo (with some of my changes, too). --- clang/test/PCH/Inputs/namespaces.h | 44 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 clang/test/PCH/Inputs/namespaces.h (limited to 'clang/test/PCH/Inputs/namespaces.h') diff --git a/clang/test/PCH/Inputs/namespaces.h b/clang/test/PCH/Inputs/namespaces.h new file mode 100644 index 0000000..bd2c3ee --- /dev/null +++ b/clang/test/PCH/Inputs/namespaces.h @@ -0,0 +1,44 @@ +// Header for PCH test namespaces.cpp + +namespace N1 { + typedef int t1; +} + +namespace N1 { + typedef int t2; + + void used_func(); + + struct used_cls { }; +} + +namespace N2 { + typedef float t1; + + namespace Inner { + typedef int t3; + }; +} + +namespace { + void anon() { } + class C; +} + +namespace N3 { + namespace { + class C; + } +} + +namespace Alias1 = N2::Inner; + +using namespace N2::Inner; + +extern "C" { + void ext(); +} + +inline namespace N4 { + struct MemberOfN4; +} -- cgit v1.2.3