2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / externC5.C
blob3e32d4ffa1d20925d70702399cde1246e0b1fe26
1 // { dg-do assemble  }
2 // Origin: schmid@snake.iap.physik.tu-darmstadt.de
4 extern "C" int rand (void) throw ();
6 namespace std
7
8 extern "C" int rand(void) throw(); 
9 template <class T> void f(T a) {}
12 using namespace std;
14 int main()
16   f(rand);
17   f(std::rand);
18   f(::rand);