aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/Wunused-13.C
blob: d0eae113e9e4fa655821be435bd8b821adc6f57f (plain)
1
2
3
4
5
6
7
// Test whether -Wunused handles effectless indirect_ref operation ('*').
// { dg-do compile }
// { dg-options "-Wunused" }

void Foo(int* x) {
  *x++; // { dg-warning "value computed is not used" }
}