URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [error7.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// Test for printing the type of T{} in error messages.
// { dg-options -std=c++0x }
template <class T, T t> struct A { };
template <class T> A<T,T{}> f(T t); // { dg-message "T{}" }
int main()
{
f(); // { dg-error "no match" }
}
Go to most recent revision | Compare with Previous | Blame | View Log