Douglas Gregor | f5c9f9f | 2012-01-07 09:11:48 +0000 | [diff] [blame] | 1 | @import namespaces_top; |
2 | |||||
3 | namespace N1 { } | ||||
4 | |||||
5 | namespace N1 { | ||||
6 | float& f(float); | ||||
7 | } | ||||
8 | |||||
9 | namespace N2 { | ||||
10 | float& f(float); | ||||
11 | } | ||||
Douglas Gregor | c6c8e0e | 2012-01-09 17:30:44 +0000 | [diff] [blame] | 12 | |
13 | |||||
14 | |||||
15 | |||||
16 | |||||
17 | namespace N5 { | ||||
18 | int &f(int); | ||||
19 | } | ||||
20 | |||||
21 | namespace N6 { | ||||
22 | int &f(int); | ||||
23 | } | ||||
24 | |||||
25 | namespace N7 { | ||||
26 | int &f(int); | ||||
27 | } | ||||
Douglas Gregor | 0fdc09f | 2012-01-09 17:38:47 +0000 | [diff] [blame] | 28 | |
29 | namespace N8 { | ||||
30 | int &f(int); | ||||
31 | } | ||||
32 | |||||
33 | namespace N9 { | ||||
34 | int &f(int); | ||||
35 | } | ||||
36 | |||||
37 | namespace N10 { | ||||
38 | int &f(int); | ||||
39 | } | ||||
Douglas Gregor | 1c3875d | 2012-01-09 18:07:24 +0000 | [diff] [blame] | 40 | |
41 | namespace N11 { | ||||
42 | namespace { | ||||
43 | class Foo; | ||||
44 | } | ||||
45 | Foo *getFoo(); | ||||
46 | } | ||||
47 | |||||
48 | namespace N12 { | ||||
49 | namespace { | ||||
50 | class Foo; | ||||
51 | } | ||||
52 | Foo *getFoo(); | ||||
53 | } |