Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wunused-13.C
blob: d0eae113e9e4fa655821be435bd8b821adc6f57f [
file
] [
log
] [
blame
]
// 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" }
}