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" }
}