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

    <tr>
        <th>Summary</th>
        <td>
            clang-format-18 `AlignTrailingComments: Kind: Leave` moves comments #4
        </td>
    </tr>

    <tr>
      <th>Labels</th>
      <td>
            clang-format
      </td>
    </tr>

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

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

<pre>
    Given following `.clang-format` file:
```
AlignArrayOfStructures: Left
AlignTrailingComments:
    Kind: Leave
IndentWidth: 4
```
And following `foo.cpp` source file:
```
#include <string>
#include <vector>

struct Foo {
    std::string text;
    int number;
};

const std::vector<Foo> table1 = {
 // This is a comment
    // The purpose of comments is to describe what and why is going on in code
    // Specifically this comment here is for the demonstration of clang-format's
    // bug
    {"Hello", 1},
 {"There", 2},
    {"!",     3},
};
```
I expect that `clang-format foo.cpp` will not move comments, however, it does:
```
$ clang-format foo.cpp 
#include <string>
#include <vector>

struct Foo {
    std::string text;
    int number;
};

const std::vector<Foo> table1 = {
  // This is a comment
  // The purpose of comments is to describe what and why is going on in code
  // Specifically this comment here is for the demonstration of clang-format's
  // bug
 {"Hello", 1},
    {"There", 2},
    {"!", 3},
};
```
Looks like the comments get moved to the default `IndentWidth` of `2`.

`clang-format` version:
```
$ clang-format --version
Ubuntu clang-format version 18.0.0 (++20230929042255+ab472cd4ea12-1~exp1~20230929042400.1214)
```


</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJzclc1y2zYQx58GuuxIgw-KIg88SHLUZppOD3anZ5BckmhAgAOAkn3Js3dAyRIVO016yKUeD0RhF7v7X_zEld6r1iAWZL0j64eFHENnXfG7dEEZ_9grZ-zRL0pbvxS_qCMaaKzW9qRMCySlq0pL0y4b63oZSEqhURqJ2BL6QOiWpPTyP33datWarXPy5Y_mMbixCqNDT8QWPmETZj5PTiqtTLu3fY8m-GtAAIDflKnPZ-QRz9sfTY0m_KXq0EVL8n52U9_X3li7qoYhVu3t6Cr81-IJF8pUeqwRiNj74JRpifjwnvGIVbDuZpxWPwmGg7VANrubHB-iGiK255AQ8DkQMXNQJoAZ-xLddZtsHm7P01pZ48Mt1msF-4O1RHyAIEuNDIh4mCUn_ED4AZ465UF5kFCd231LffVAGEY3WI9gm1e36VCwUKOvnCoRTp0MIE0Np-4l2lob9VgDykBla3wT93HASjWqklq_QIhlXEJDhw5jiMY6CB1CjX0U6GRQ1kw1zLHjG_8mdjm2s73NjnD-K2ptCeeE74HFFvL9aycm-1PMerHzO_s1BOHs4hD_xNzp7k7u0fkI-DxgFSDEDpGUzquHGYYnpTUYG6C3R7z2Oabr7AmP6OKjClBb9N_mNIH34sP_FePvcvxzKP55DL8h-Hv4XvH8TwT_KL2frP3sQavPOMm49q3FM6d1bN9ZYCNHPQE-fyGnNIolKeVxXsxv-6tfQvQ8ovPKmh-Ge7l8PTHZ_yxHE8Z7l4sDsGxFVxQIzwjfEb7jlAua85wmnK_XhO9kmWx4VScoGV-yL_g8sC8zp4TSFeMsITx_v7ZpXdSFqHORywUWLM3zdZIxull0BavTRNA1VpwKlmbYiIxzKRqWpSLPebZQRUzGGM1ZmrBks0pZnaWsxPWaJinNBUko9lLpldbHfmVdu1Dej1hsWMbXCy1L1H4a45zfo8XjYHdFPLYsx9aThGrlg78FCipoLOanliyLd_atcfzVFE7phIK_0UG4SBaj00UXwjC9rCaqWxW6sVxVtif8ENNfPpaDs39jFQg_TKI84YdJ1z8BAAD__0dXgiY">