URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [parse/] [template11.C] - Rev 717
Go to most recent revision | 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>;
Go to most recent revision | Compare with Previous | Blame | View Log