<html>
    <head>
      <base href="https://bugs.llvm.org/">
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - clang-format AlignArrayOfStructures crashes when seeing clauses of different number of members"
   href="https://bugs.llvm.org/show_bug.cgi?id=52425">52425</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>clang-format AlignArrayOfStructures crashes when seeing clauses of different number of members
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>clang
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>trunk
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>All
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>All
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>normal
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>Formatter
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>unassignedclangbugs@nondot.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>lichray@gmail.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>djasper@google.com, klimek@google.com, llvm-bugs@lists.llvm.org
          </td>
        </tr></table>
      <p>
        <div>
        <pre>Created <span class=""><a href="attachment.cgi?id=25426" name="attach_25426" title="test case">attachment 25426</a> <a href="attachment.cgi?id=25426&action=edit" title="test case">[details]</a></span>
test case

Crashes when formatting

std::vector<std::vector<uint8_t>> var_len_seq{
    { 0x80 },
    { 0xf5 },
    { 0xc3, 0x7f },
    { 0xc3, 0xc0 },
    { 0xe1, 0x7f },
    { 0xe1, 0xc0 },
    { 0xe1, 0x81, 0x7f },
};

If I remove the last line, I get a bad result:

std::vector<std::vector<uint8_t>> var_len_seq{
    {0x80},
    { 0xf5   },
    { 0xc3,   0x7f},
    { 0xc3,   0xc0},
    { 0xe1,   0x7f},
    { 0xe1,   0xc0},
};

My _clang-format is

---
BasedOnStyle: Microsoft
AlignArrayOfStructures: Right

...</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are on the CC list for the bug.</li>
      </ul>
    </body>
</html>