blob: 7e9002aea8cdd2c0b50d8c6c531749cdaff0fd79 [file] [log] [blame]
Douglas Gregorf5c9f9f2012-01-07 09:11:48 +00001@import namespaces_top;
2
3namespace N1 { }
4
5namespace N1 {
6 float& f(float);
7}
8
9namespace N2 {
10 float& f(float);
11}
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +000012
13
14
15
16
17namespace N5 {
18 int &f(int);
19}
20
21namespace N6 {
22 int &f(int);
23}
24
25namespace N7 {
26 int &f(int);
27}
Douglas Gregor0fdc09f2012-01-09 17:38:47 +000028
29namespace N8 {
30 int &f(int);
31}
32
33namespace N9 {
34 int &f(int);
35}
36
37namespace N10 {
38 int &f(int);
39}
Douglas Gregor1c3875d2012-01-09 18:07:24 +000040
41namespace N11 {
42 namespace {
43 class Foo;
44 }
45 Foo *getFoo();
46}
47
48namespace N12 {
49 namespace {
50 class Foo;
51 }
52 Foo *getFoo();
53}