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

    <tr>
        <th>Summary</th>
        <td>
            [clang-format] AlignArrayOfStructures ignores Cpp11BracedListStyle
        </td>
    </tr>

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

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

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

<pre>
    ```sh
$ clang-format --version
clang-format version 15.0.0
$ echo "auto x = { { a, b }, { c, d } }" | clang-format --style="{ Cpp11BracedListStyle: false, AlignArrayOfStructures: Left }"
auto x = {
  {a,  b},
  { c, d}
}
```
Note the inconsistent spacing before `a` and `c`
With `Cpp11BracedListStyle: false` I'd expect the following, with spaces both before and after the curlies
```
auto x = {
  { a, b },
  { c, d }
}
```
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJx9Uk1v5CAM_TXkgiYKZJI0hxzmQ5VWqrqHHvYMiUlYMSEC0un8-5pk-jG7bSUQ5hnbz89I210aUmbr8gPJjiTbEb6lrRFjv1HWnUSgm80zOK_tuPpvfFcPZUWapdlHAmgHSwnnYg6WvlCSHymp9ssWhB-oRPMYjYi00egisqIcj8O_HHy4GMA86I4xh2libO9EC92D9uFp9e6oEsZDzLczuh93zonLb_UU3NyG2YGPTx5AhWuhlfAtyRWj0VyoUrlS_YRfGUd87fjdeBNzvT7aADQMQPXY2tEjTxgD9ZNo9dhTCdgcUHwtcFMxdtFu36P_6DBE5OdWMfIX4VVH4WWCNizllDXGnrFGpHmOaWJN8FRatK91Yz2hArglpJ2d0ajPV218q8_tLP8XiP6gUAINK0teFHVdsKRr8q7Oa5EEHQw0pNh_Hj8pjt_MkyJo4_mVSAn21AwhTHHshN_j6lGMWaatPeHFmOe3YzM5-xflw6v2fkYh-H1RlYwlQ9PJu7uqZhlTuaoymSvJ6k4VNYiiU9saEiMkGB9J45ca4UyXFPF7FcdENzzjPKuzim0Zz1mqBHR5CXleSqaqSpJtBiehTRp5pNb1iWsWSnLuPToNtuM_nMJ77BkWjWJ-HM5gXdODkxbGHokkS_lmof8K-j8mNw">