OSDN Git Service

2009-02-02 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / undefined1.C
1 // PR 17256
2
3 inline static void f1(void); // { dg-warning "used but never" }
4 void g1(void) { if (0) { f1(); } }
5
6 inline void f2(void); // { dg-warning "used but never" }
7 void g2(void) { if (0) { f2(); } }