OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / explicit2.C
1 struct X {
2   template <class B> void foo(B);
3 };
4
5 template <class D>
6 void bar() {
7   X().foo<D>(1);
8 }
9
10 template void bar<int> ();