OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / lambda / lambda-use.C
1 // { dg-options -std=c++0x }
2
3 int main(int argc, char** argv)
4 {
5   int i;
6   int &ir = i;
7   const int ci = 0;
8   const int &cir = ci;
9
10   [] { sizeof (argc); sizeof (i); sizeof (ir); sizeof (ci); sizeof (cir); };
11   [] { int ia[ci]; };
12 }