URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [fnspec1.C] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/35146
template <typename T> struct S {};
template <typename R> struct ref;
template <> struct ref<double> { typedef double result; };
template <typename T>
void foo(typename ref<T>::result, S<T>*);
template <>
void foo(S<double>, S<double>*); // { dg-error "does not match" }
template <>
void foo(double alpha, S<double>* x)
{
alpha; x;
}
Go to most recent revision | Compare with Previous | Blame | View Log