repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wcast-qual1.C
blob
23be6fa5c4da6a01739d2e52cdf6832aa5947735
1
// PR c++/24667
2
// { dg-options "-Wcast-qual" }
3
4
int main(int, char**) {
5
const int foo[2] = {1,1};
6
((int*)foo)[0] = 0; // { dg-warning "4:cast" }
7
}