aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-nop.C
blob: 4a04cfbfb58934467412dd130a0bc8f71d0abb34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// { dg-do run { target c++11 } }
#include <cassert>

int main() {
  int i = 1, j = 2;
  [i, j] () -> void {} ();
  assert(i == 1);
  assert(j == 2);
  [&i, &j] () -> void {} ();
  assert(i == 1);
  assert(j == 2);
  [] (int x) -> void {} (1);
  [] (int& x) -> void {} (i);
  [] (int x, int y) -> void {} (i, j);

  return 0;
}