aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-copy.C
blob: 6d27d75febff9d8958c85957d41760505ed3c01d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { dg-do run { target c++11 } }

int main() {
  int i;
  const char* s;
  [i, s] () -> void { i; s; } ();

  //[] () -> void { i; } (); // { dg-error: "`i' is not in scope" }
  //[1] () -> void {} (); // { dg-error: "expected identifier" }

  return 0;
}