URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [other/] [switch1.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// Contributed by: Nick Savoiu <savoiu at ics dot uci dot edu>
// PR c++/14250: Incomplete type in switch statement
template <typename T>
struct A {
operator int();
};
struct C1 {
static A<void> t1;
void fun()
{
switch(t1)
{
default: break;
}
}
};
Go to most recent revision | Compare with Previous | Blame | View Log