summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30759-lambda2.cpp
blob: 09c779b51fbae34f04d6ad5c3db5a841acb2defc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
void f1()
{
   auto a =
       [=] (int *a, Something& b){
          std::cout << "blah: " << *a;
       };
}

void f1a()
{
   std::for_each(a, b,
       [] (Something& b){
          std::cout << "blah: " << *a;
       }
       );
}

void f1b()
{
   std::for_each(a, b,
       [] (int& b) -> foo {
          b += 3;
          return(b);
       }
       );
}

void f2()
{
   Invoke(a, b,
       [&one, two] (int *a, Something& b){
          std::cout << "blah: " << *a;
       }
       );
}

void f3a()
{
   auto a = [] {};
   auto b = []{ return(true); };
}

void f3b()
{
   Invoke(a, b,
       [&one, two]{
          std::cout << "blah: " << one << two;
       }
       );
}

void f3c()
{
   int a[]{};
}

void g1()
{
   auto a = [=] (int *a, Something&b) { std::cout << "blah: " << *a; };
}

void g1a()
{
   std::for_each(a, b, [] (Something& b){ std::cout << "blah: " << *a; });
}

void g1b()
{
   std::for_each(a, b, [] (int& b)->foo { b += 3; return(b); });
}

void g2()
{
   Invoke(a, b,
       [&one, two] (int *a, Something&b){ std::cout << "blah: " << *a; });
}

void h1()
{
   [] () -> int {
      return(33);
   }();

   [] () noexcept ->int {
      return(33);
   }();
}

void h2()
{
   [] (int a) -> int {
      return(a + 33);
   }(21);

   [] (int a) noexcept ->int {
      return(a + 33);
   }(21);
}