summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/30220-bug_1340.cpp
blob: f64bc6a031c6a3a07f983fca8679edc9eeff7dcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
double t    = 111;
double t1   = 222;
double t123 = 333;


auto f = [](double x) -> double
         {
             double t    = 1111;
             double t1   = 1222;
             double t123 = 1333;
         };


std::transform(v1.begin(), v1.end(), v2.begin(),
               [](double x) -> double
               {
                   double t    = 2111;
                   double t1   = 2222;
                   double t123 = 2333;
               }; );