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

    <tr>
        <th>Summary</th>
        <td>
            `AlignAfterOpenBracket: BlockIndent` does not respect `BinPackParameters: false`
        </td>
    </tr>

    <tr>
      <th>Labels</th>
      <td>
            new issue
      </td>
    </tr>

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

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

<pre>
    Config
```
ColumnLimit: 30
AlignAfterOpenBracket: BlockIndent
BinPackParameters: false
```
Input
```
void f1_____(int token, float context) {
}

auto f2 = [](int token, float context) {
};
```
Actual Output
```
void f1_____(
    int token, float context
) {}

auto f2 = [](int token,
             float context) {
};
```
Expected Output
```
void f1_____(
    int token,
    float context
) {}

auto f2 = [](
    int token,
    float context
) {};
```

Notice the parameters to `f1` are not on separate lines as they should be based on `BinPackParameters: false`. For comparison, parameters are on separate lines as expected with `AlignAfterOpenBracket: BlockIndent`. The only difference between those two should be the placement of the closing paren.
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJykVE9vqzgQ_zTmMmpkm0DCgUPSbKRKq20Pe18ZMwRvjB3ZQ9N8-ycTXttDXl_7aiED4_Hvz_iPitEcHGLNii0rdpkaqfehVsfmEtqs8e2lvveuMwfGd4xvWMnnZ_q993Yc3N9mMMTyDeRzeGPNwW06wvB4QrcNSh9xSthar48PrkVH18ytcU9KH59UUAMShpiyOmUj3uR7cKeRbo48e9NCJ_5Ljcm1cQTkj-iYvIfOekWgvSN8ISYrYKvtDLLazR9Tr0by0Elg-Q6u9fgaVL69qW2jaVQWHkf6pPprEADgA_Irzizhiz7eCF7bHzn76-WEmrD9tre36PdMfg_9Fy6v_T-ejEagHuH0ul2BPLCSd4KVHFRAcJ7AO4iYcgjBGocRVEzzLhB7P9oWGoRGRWxTJiv5B4eg5AvY-wDaDycVTPTTRnjHnzhv8uHPpTkb6hPLpw5l4vu3T5D2Aq3pOgzoNEKDdEZ0QL2PCHT276xMFbFK44COwHdTQFsfjTskqegWWVvnbZVXKsNarORS8CIvRNbXecmxUlUhNOaFXnVFK5uibPKlaETVrUVmasnlkq9FJSWvhFgsRdUqIfIVL1aclx1bchyUsQtrn4eFD4fMxDhiLfhyvcozqxq0cbrdpHR4hmmUSZkuu1CnSXfNeIhsya2JFN9gyJDF-vOFg9ZjnNY_YEy1_-3SZmOwdU90SlEm90zuD4b6sVloPzC5T1Lm190p-P9RE5P7yUBkcj87fK7ljwAAAP__lym45w">