2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / main1.C
blobe002d323cf3d352210da494779b0d4841ebb8941
1 // { dg-do assemble  }
3 // main is only reserved in the global namespace [basic.start.main]/3
5 // submitted by Gerald Gutierrez <gutier@intergate.bc.ca>
7 namespace A { void main () { } }
8 namespace B { void main () { } }
9 namespace C {
10   void main () { }
11   namespace D {
12     void main () { }
13   }