Sign in
gnu
/
gcc
/
a8404c07e7fca388c02c39077865f7d5fa928430
/
.
/
gcc
/
testsuite
/
g++.dg
/
pr64353.C
blob: 7859918cf56cc89734aa2cd96408045633445c6f [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O2" } */
class
C
{
int
y
,
x
;
void
i
();
bool
__attribute__
((
const
))
xx
()
{
return
x
;
}
};
void
C
::
i
()
{
if
(
xx
())
x
=
1
;
}