OSDN Git Service

gcc:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / Wunused-3.C
1 // { dg-do compile }
2 // { dg-options "-Wunused -O" }
3
4 void do_cleanups();
5
6 class Cleanup {
7 public:
8     ~Cleanup() { do_cleanups();}
9 };
10
11 static Cleanup dummy;