blob: 043d54fa4c97a44f2958beccfbe8498f69d9386e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// { dg-do assemble }
// Origin: Jakub Jelinek <jakub@redhat.com>
struct foo
{
foo();
void x();
};
void foo::x() throw(bar) // { dg-error "" } parse error
{
}
void bar()
{
foo x;
}
|