<table border="1" cellspacing="0" cellpadding="8">
    <tr>
        <th>Issue</th>
        <td>
            <a href=https://github.com/llvm/llvm-project/issues/56078>56078</a>
        </td>
    </tr>

    <tr>
        <th>Summary</th>
        <td>
            clang-format incorrect indent after `AlignConsecutiveAssignments` enabled
        </td>
    </tr>

    <tr>
      <th>Labels</th>
      <td>
      </td>
    </tr>

    <tr>
      <th>Assignees</th>
      <td>
      </td>
    </tr>

    <tr>
      <th>Reporter</th>
      <td>
          isudfv
      </td>
    </tr>
</table>

<pre>
    ```
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
```
int  abcdefghijk = 111;  
auto lambda      = [] {  
    int c = call(1,      
                 2, 
                 3, 
                 4);
};                       
```
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJyNUtuO2yAQ_Rr8MoqFwZf4wQ_ZRP0PbrbZYoi4pOrfFzvJdtum2aCR8PgcZg5z4E7-HFCLb4FPCB-0jQCMC6nGadbv3wHRE1RVhegbXBksRQeGLVwy2NbKQM0bavLW3VkrsNYSGyyYMYjsK0SO1yMfnH8XWUmIHne7Zyz6EqtGpP_MQt1pvcjDdWP8OY44K2BGTxbcCGOyImpn4cw8WwLoHFY475WIoEfQMYBLMWip7gPKlO24kvBDxxly4cOaH50NSqSoL-oQQv6xKBtDRsubjI_uwuVqYXbJSODqochnnr1o2kuu_c-2q2OPMfoEW93JGr-25m9vCjlQ2dOeFVFHowZhmJ12o_MLi58tsTJPFdgYlf968qAs40bJInkzzDGeA6IHRL7lmLJ1iZfCLTkx5nLfdmfv3nOnnOoQkgr5o2lxty_moZeiEZRRgjmmXbOnNZe8ptVYy5pKLgvDuDJhuJpQ6IFgQnBbdZg2FLcl37dCVKSmPW-wHFtUY7Uwbcq1cen8VPhh08DTFDJodIjhN8i2uyl1r58fwOz8oEOS46XY1A6b1F92FxRT">