Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr33930.C
blob: ba5b4b943c81a97e521f04631d75fead2d8a85ca [
file
] [
log
] [
blame
]
// { dg-do compile { target c++11 } }
typedef
const
int
*
type
;
float
&
foo
(
const
type
&
ggg
);
int
&
foo
(
type
&&
ggg
);
void
bar
(
int
*
someptr
)
{
int
&
x
=
foo
(
someptr
);
// { dg-error "cannot bind non-const lvalue reference" }
}