1 // Test this without pch.
2 // RUN: %clang_cc1 -x c++ -include %S/Inputs/namespaces.h -fsyntax-only %s
5 // RUN: %clang_cc1 -x c++ -emit-pch -o %t %S/Inputs/namespaces.h
6 // RUN: %clang_cc1 -x c++ -include-pch %t -fsyntax-only %s
9 N1::t1
*ip1
= &int_val
;
10 N1::t2
*ip2
= &int_val
;
11 N2::Inner::t3
*ip3
= &int_val
;
15 N2::t1
*fp1
= &float_val
;
17 Alias1::t3
*ip4
= &int_val
;
20 void(*funp1
)() = anon
;
38 void (*pused
)() = used_func
;
44 inline namespace N4
{ }
45 struct MemberOfN4
*mn4
;