Sign in
gnu
/
gcc
/
93ac832f1846e4867aa6537f76f510fab8e3e87d
/
.
/
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
;
}