blob: 252546414199fffa083f2243cef940a8871a2caa [file] [log] [blame]
// N3648: capture init
// { dg-options "-w" }
// { dg-do run { target c++1y } }
int main()
{
int x = 41;
auto r = [x = x+1]{ return x; }();
if (r != 42) __builtin_abort();
static auto *p = &r;
[&x=r]{ if (&x != p) __builtin_abort(); }();
}