2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / using3.C
blob93549a296245bfb576329b8c0e009658211dfb00
1 // { dg-do assemble  }
3 typedef unsigned int atypedef;
4 struct astruct{};
5 void afunction();
6 void aovlfunction();
7 void aovlfunction(int);
8 int avariable;
10 namespace foo {
11   using ::atypedef;
12   using ::astruct;
13   using ::afunction;
14   using ::aovlfunction;
15   using ::avariable;