Clang Project

clang_source_code/test/Modules/Inputs/namespaces-top.h
1namespace N1 { 
2  int& f(int);
3}
4
5namespace N2 { 
6  int& f(int);
7}
8
9namespace N3 { 
10  int& f(int);
11}
12
13namespace N12 { }
14
15namespace N13 {
16  void f();
17  int f(int);
18  void (*p)() = &f;
19}
20
21namespace AddAndReexportBeforeImport {
22  int S;
23}
24
25namespace Empty {}
26