]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Modules/Inputs/namespaces-top.h
Vendor import of clang release_34 branch r197841 (effectively, 3.4 RC3):
[FreeBSD/FreeBSD.git] / test / Modules / Inputs / namespaces-top.h
1 namespace N1 { 
2   int& f(int);
3 }
4
5 namespace N2 { 
6   int& f(int);
7 }
8
9 namespace N3 { 
10   int& f(int);
11 }
12
13 namespace N12 { }
14
15 namespace N13 {
16   void f();
17   int f(int);
18   void (*p)() = &f;
19 }