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
Update ChangeLog and version files for release
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
pr35711.C
blob
653269c0e7929534b06a3aeef4155c4838529221
1
// PR 35711
2
// { dg-do compile }
3
// { dg-options "-Wcast-qual" }
4
5
int* foo (volatile int *p)
6
{
7
return (int*)p; // { dg-warning "cast from type 'volatile int\\*' to type 'int\\*' casts away qualifiers" }
8
}