Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git] / main / gcc / testsuite / g++.dg / cpp1y / lambda-init2.C
blob83ec57e67576d9d4185e83bf14df622e283fa961
1 // N3648: redundancy and capture init
2 // { dg-do compile { target c++1y } }
4 int main()
6   int x = 42;
7   [=,x]{};                      // { dg-error "redundant" }
8   [=,&x]{};
9   [&,&x]{};                     // { dg-error "redundant" }
10   [&,x]{};
11   [=,x=24]{};
12   [&,&r=x]{};