repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
S/390: Deprecate g5 and g6 CPU levels
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wunused-15.C
blob
efaebc006e8353de401191d4a06e4836f8ff0885
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
}