blob: 1ff84f3111c9221fd6a7240862371bef8a9f4243 [file] [log] [blame]
Douglas Gregor58212492010-02-24 21:53:36 +00001// Merge success
2namespace N1 {
3 int x;
4}
5
6// Merge multiple namespaces
7namespace N2 {
8 extern int x;
9}
10namespace N2 {
11 extern float y;
12}
13
14// Merge namespace with conflict
15namespace N3 {
16 extern float z;
17}