```c int abcdefghijk = 111; auto lambda = [] { int c = call(1, 2, <-- 3, <-- 4) <-- }; ``` the align of function params is incorrect if its outside lambda is aligned with `AlignConsecutiveAssignments`. the code should be ```c int abcdefghijk = 111; auto lambda = [] { int c = call(1, 2, 3, 4); }; ```