summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-copy.C
blob: 7356872e1ab0137c974e0d8a9cd78cfa670f2d04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-do run }
// { dg-options "-std=c++0x" }

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;
}