2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / template / koenig1.C
blob850d38828241dc3155879a4779e2603f92a1204d
1 namespace NS {
2     struct C {};
3     void foo(C);
6 template <class T> void bar() { T t; foo (t); }
8 template void bar<NS::C> ();