OSDN Git Service

2009-09-01 Diego Novillo <dnovillo@google.com>
[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 }