OSDN Git Service

PR c++/28878
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / koenig1.C
1 namespace NS {
2     struct C {};
3     void foo(C);
4 }
5
6 template <class T> void bar() { T t; foo (t); }
7
8 template void bar<NS::C> ();