OSDN Git Service

2010-04-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / Wunused-15.C
1 // PR c++/39875
2 // { dg-do compile }
3 // { dg-options "-Wunused-value" }
4
5 int *i;
6 void
7 foo ()
8 {
9   *i++;         // { dg-warning "value computed is not used" }
10   (void) *i++;  // { dg-bogus "value computed is not used" }
11 }