summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/cpp/bug_1340.cpp
blob: 680d6d5189fb51056a2011483bb77af8e491ffc1 (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;
               }; );