summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/input/cpp/lambda.cpp
blob: 5262d00fa33c711268ebad2c765d12da38d109c9 (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
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; });
}