Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wstrict-aliasing-bogus-const.C
blob: 7c079ad5c54834ca967478975656c540c1a88e27 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O2 -Wstrict-aliasing -fstrict-aliasing" } */
int
foo
(
int
*
p
)
{
const
int
&
q
=
*
p
;
/* { dg-bogus "const vs. non-const" } */
*
p
=
1
;
return
q
;
}