aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/init13.C
blob: 1213a5c56223164d4f209a2e18f3ee5e851da6ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Build don't run:
// Special g++ Options: -O3
// Origin: Gabriel Dos_Reis <Gabriel.Dos_Reis@sophia.inria.fr>

void f() {}

struct X {
    ~X() { f (); }
};

X x;

int main () {}