URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [overload/] [defarg1.C] - Rev 707
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/5247
template<typename T>
int foo (T t, int = foo(T()));
struct A { };
int main()
{
foo(A()); // { dg-error "default argument" }
}
Go to most recent revision | Compare with Previous | Blame | View Log