URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [other/] [crash-5.C] - Rev 316
Go to most recent revision | Compare with Previous | Blame | View Log
// Origin: PR c++/42758
// { dg-do compile }
template<class T> struct less {};
template<class T, typename U = less<T> > struct set {};
struct int_less_than {};
void assert_fail (const char*);
int f(const set<int, int_less_than>&)
{
assert_fail (__PRETTY_FUNCTION__);
}
Go to most recent revision | Compare with Previous | Blame | View Log