blob: 40cd70f448093d26b7becddd383f8e01ed51f3db [file] [log] [blame]
// 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 (int argc, char *argc[])
{
B b;
b.f();
}