URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [other/] [pr27495.C] - Rev 826
Compare with Previous | Blame | View Log
// Test to make sure we do not ICE on this invalid program.
struct A
{
template<int> void foo();
void bar() { this.A::foo<0>(); } // { dg-error "" }
};