Rebase.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / lambda / lambda-use.C
blob73677c0e767b99d3b71f1888eedb1d1c1312876a
1 // { dg-do compile { target c++11 } }
3 int main(int argc, char** argv)
5   int i;
6   int &ir = i;
7   const int ci = 1;
8   const int &cir = ci;
10   [] { sizeof (argc); sizeof (i); sizeof (ir); sizeof (ci); sizeof (cir); };
11   [] { int ia[ci]; };