URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [dependent-name6.C] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/26261
// { dg-final { scan-assembler "_ZN1YIiE1fIiEE1XILi1EEv" } }
template <int dim> class X {};
template <class T> struct Y {
static const unsigned int dim = 1;
template <class U> X<Y<T>::dim> f();
};
template <class T> template <class U>
X<Y<T>::dim> Y<T>::f() { return X<dim>(); }
int main()
{
Y<int>().f<int>();
}
Go to most recent revision | Compare with Previous | Blame | View Log