Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp1y
/
decltype-auto1.C
blob: 13baf8eba06c48894f14670f95759e2ce9c8b1e5 [
file
] [
log
] [
blame
]
// PR c++/78209
// { dg-do compile { target c++14 } }
int
main
()
{
int
&&
i
=
0
;
decltype
(
auto
)
j
=
i
;
// { dg-error "cannot bind rvalue reference" }
}