PR c++/56973, DR 696 - capture constant variables only as needed.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / lambda-init2.C
blobe4f31cfa2da248d04e886e90226a0dc87c10cba9
1 // N3648: redundancy and capture init
2 // { dg-do compile { target c++14 } }
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]{};