blob: 7bf5394f55beedd3f4e3b4f985e545bb1c7a22af [file] [log] [blame]
Douglas Gregore57e7522012-01-07 09:11:48 +00001namespace N1 {
2 int& f(int);
3}
4
5namespace N2 {
6 int& f(int);
7}
8
9namespace N3 {
10 int& f(int);
11}
Douglas Gregor540fd812012-01-09 18:07:24 +000012
13namespace N12 { }
14
Richard Smith4abe0a82013-09-09 07:34:56 +000015namespace N13 {
16 void f();
17 int f(int);
18 void (*p)() = &f;
19}
Richard Smith961eae52014-03-25 01:14:22 +000020
21namespace AddAndReexportBeforeImport {
22 int S;
23}