aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/debug2.C
blob: 200aeb3cffc16cae0ed4c4389c418f1c0df9f9c3 (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
// Build don't link:
// Special g++ Options: -funroll-loops -O2 -g

inline void f()
{
  typedef int T;
}

inline void g()
{
  typedef double U;
}

int n;

struct B
{
  ~B() { 
    for (int i = 0; i < n; ++i)
      g(); 
  }
};

struct D : public B {
  ~D() { 
    for (int j = 0; j < n; ++j)
      f(); 
  }
};

D d;