* ru.po: Update.
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wunused-15.C
blobefaebc006e8353de401191d4a06e4836f8ff0885
1 // PR c++/39875
2 // { dg-do compile }
3 // { dg-options "-Wunused-value" }
5 int *i;
6 void
7 foo ()
9   *i++;         // { dg-warning "value computed is not used" }
10   (void) *i++;  // { dg-bogus "value computed is not used" }