Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
pr35711.C
blob: 2a71d32bd0975017b7690914bf4cf3bf3a3acac7 [
file
] [
log
] [
blame
]
// PR 35711
// { dg-do compile }
// { dg-options "-Wcast-qual" }
int
*
foo
(
volatile
int
*
p
)
{
return
(
int
*)
p
;
// { dg-warning "10:cast from type 'volatile int\\*' to type 'int\\*' casts away qualifiers" }
}