Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
ref1.C
blob: df4ff470d09605764711d086ed398a93a6ac66f1 [
file
] [
log
] [
blame
]
// { dg-do assemble }
int
f
();
void
g
()
{
const
int
&
i
=
f
();
// OK
int
&
j
=
f
();
// { dg-error "" } initialization of non-const reference
const
volatile
int
&
k
=
f
();
// { dg-error "" } initialization of volatile ref
}