blob: b18aeb44786b5a5f7582e0d55b7aa88e99678d10 [file] [log] [blame]
Douglas Gregor1b257af2012-12-11 22:11:52 +00001@import namespaces_top;
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00002
3namespace N2 { }
4
5namespace N2 { }
6
7namespace N2 { }
8
9namespace N2 { }
10
11namespace N2 {
12 double& f(double);
13}
14
15namespace N3 {
16 double& f(double);
17}
18
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +000019namespace N5 {
20 double &f(double);
21}
22
23namespace N6 {
24 double &f(double);
25}
26
27namespace N7 {
28 double &f(double);
29}
Douglas Gregor0fdc09f2012-01-09 17:38:47 +000030
31namespace N8 {
32 int &f(int);
33}
34
35namespace N9 {
36 int &f(int);
37}
38
39namespace N10 {
40 int &f(int);
41}
Douglas Gregor1c3875d2012-01-09 18:07:24 +000042
43
44
45
46
47
48
49namespace N11 {
50 namespace {
51 class Foo;
52 }
53 void consumeFoo(Foo*);
54}
55
56namespace N12 {
57 namespace {
58 class Foo;
59 }
60 void consumeFoo(Foo*);
61}