aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/eh/synth2.C
blob: 2da814db9d632a24426ccf6c550c2eb602fce221 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// PR c++/24580
// { dg-do run }

struct vbase {};

struct foo : virtual vbase
{
  foo()
  {
    throw "exception in foo ctor";
  }
};

struct bar :  public foo {};

int main()
{
  try
    {
      bar a;
    }
  catch ( ... ) { }
  return 0;
}