summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/torture/pr82154.C
blob: e229c3e640ee982e7b33fba6b1b4171c7083ec97 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// { dg-do compile }
// { dg-additional-options "-Wno-deprecated" }

namespace a {
int b;
class c
{
};
}
class g
{
public:
  g ();
};
using a::b;
class d
{
public:
  d ();
  void e ();
};
class f
{
  d
  i ()
  {
    static d j;
    return d();
  }
  int *k () throw (a::c);
};


int *f::k () throw (a::c)
{
  static g h;
  i ();
  int l = 2;
  while (l)
    {
      --l;
      try
	{
	  operator new (b);
	}
      catch (a::c)
	{
	}
    }
  i ().e ();
  return 0;
}