blob: 5fe3212974402ad0002fc0bd6c8c0125db0c1297 [file] [log] [blame]
// PR c++/84664
// { dg-do compile { target c++11 } }
void
foo ()
{
auto &b = 1; // { dg-error "cannot bind" }
[] { b > 0; }; // { dg-error ".b. is not captured" }
}