aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/eh/spec5.C
blob: be8f327c0b7d5dc2dfcad73002fe84552687d64a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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();
}