Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wcast-qual1.C
blob: 23be6fa5c4da6a01739d2e52cdf6832aa5947735 [
file
] [
log
] [
blame
]
// PR c++/24667
// { dg-options "-Wcast-qual" }
int
main
(
int
,
char
**)
{
const
int
foo
[
2
]
=
{
1
,
1
};
((
int
*)
foo
)[
0
]
=
0
;
// { dg-warning "4:cast" }
}