blob: 7d924d5129191427c5fd4aa8cb5b194be1b7d70d [file] [log] [blame]
// Build don't link:
// Origin: Jakub Jelinek <jakub@redhat.com>
// excess errors test - XFAIL *-*-*
struct foo
{
foo();
void x();
};
void foo::x() throw(bar) // ERROR - parse error
{
}
void bar()
{
foo x;
}