aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/tree-ssa/pr36766.C
blob: 37e0d517e9e29a3e0b995ec676422558febd0dff (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
// PR tree-optimization/36766
// { dg-do compile }
// { dg-options "-O -fnon-call-exceptions" }

struct A
{
  ~A ()
  {
    int *a = this->b;
  }
  int *b;
};

struct B : A
{
  B ()
  {
    int *a = this->b;
  }
   ~B ()
  {
    int *a = this->b;
  }
};

void
foo ()
{
  B *c = new B;
  delete c;
}