aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/warn/Wunused-3.C
blob: 31009094352b39042218c9339b021abcc2a4d547 (plain)
1
2
3
4
5
6
7
8
9
10
11
// { dg-do compile }
// { dg-options "-Wunused -O" }

void do_cleanups();

class Cleanup {
public:
    ~Cleanup() { do_cleanups();}
};

static Cleanup dummy;