FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / using3.C
bloba8c1761f6f5976767e31ce3fb3dc97170aef41a5
1 // Build don't link:
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;