URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [explicit-args5.C] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/51613
template<typename F, typename T>
void apply(F f, T t)
{
f(t);
}
template<typename T>
void multi(T)
{
}
template<typename T>
void multi(T*)
{
}
int main()
{
apply(&multi<int>, 7); // { dg-error "no match" }
return 0;
}
Go to most recent revision | Compare with Previous | Blame | View Log