rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/debug2.C

32 lines
315 B
C

// { dg-do assemble }
// { dg-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;