summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/cpp/Issue_2166.cpp
blob: d9ac55c7e9fe70c5cbe07dd95009b90e4f7a887c (plain)
1
2
3
4
5
6
7
void f1()
{
   int a;
   int b;
   auto lambda1 = [ &a ](){ return true; };
   auto lambda2 = [ &a = b ](){ return true; };
}