URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.dg/] [parse/] [template11.C] - Rev 12
Compare with Previous | Blame | View Log
// PR c++/9488
// Origin: Wolfgang Bangerth <bangerth@ticam.utexas.edu>
// { dg-do compile }
struct A
{
template <typename> void foo() {}
};
template <typename T> struct B
{
void bar() { A().foo<T>(); }
};
template struct B<int>;