URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [eh/] [spec5.C] - Rev 831
Go to most recent revision | Compare with Previous | Blame | View Log
// Test for extension to allow incomplete types in an
// exception-specification for a declaration.
// { dg-do run }
// { dg-options "-fpermissive -w" }
struct A;
struct B
{
void f () throw (A);
};
struct A {};
void B::f () throw (A) {}
int main ()
{
B b;
b.f();
}
Go to most recent revision | Compare with Previous | Blame | View Log