OSDN Git Service

PR c++/41109
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / Wunused-16.C
1 // { dg-do compile }
2 // { dg-options "-Wunused-value" }
3
4 extern void f1();
5 void
6 f(bool b)
7 {
8   b ? f1(), 0 : 0;      // { dg-bogus "has no effect" }
9 }