aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/g++.dg/init/ref12.C
blob: 4430e174b7427dee47a4a88e75169ba602a39fb8 (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
// PR c++/17435
// { dg-do run }

extern "C" void abort ();

bool ok;
 
struct A  
{ 
  void func() const 
  { 
    ok = 1;
  } 
  
  ~A() 
  { 
    if (!ok)
      abort ();
  } 
}; 

struct B : public A  
{ 
}; 
 
int main() 
{ 
  A const& r1 = B(); 
  r1.func(); 
}