crash30.C   [plain text]


// Build don't link:
// Origin: Jakub Jelinek <jakub@redhat.com>

struct foo
{
  foo();
  void x();
};

void foo::x() throw(bar)	// ERROR - parse error
{
}

void bar()
{
  foo x;
}