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

    <tr>
        <th>Summary</th>
        <td>
            [clang-format] can not format protoc if message field name is "operator"
        </td>
    </tr>

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

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

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

<pre>
    "operator" did not work
```
message Request {
    optional uint64 id             = 1;
    optional string file_name = 2;
    optional uint64 time         = 3;
    optional string status       = 4;
    optional string operator  = 5;
    optional uint64 request_status = 6;
    optional uint64 pending_count  = 7;
}
```
![bad](https://user-images.githubusercontent.com/90543061/170435148-c245160a-56a7-4c23-b1b3-720011e527cf.png)

"operatar" did works
```
message Request {
    optional uint64 id        = 1;
    optional string file_name = 2;
    optional uint64 time      = 3;
    optional string status    = 4;
    optional string operator = 5;
    optional uint64 request_status = 6;
    optional uint64 pending_count  = 7;
}
```
![ok](https://user-images.githubusercontent.com/90543061/170435166-c5510899-e146-4e45-8f9f-c2c8795c70f0.png)

may be "operator" is a key words in clang-format
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJzNVFtu3CAUXQ3-QR4B5mE-_NFo1AV0AxHG2ENjw9Tgptl9rz1OOpFGI0VKpSAkLtz34UAbu5cGMRbPbjY5ziDiznc4xIyf4_yEyBGRb0iSfW7byaVkBod_uF-LSxkj9XBRYBjxnH0MZsSLD1lyDMGuB6qOmKLqlkPKsw8D7v3oHoOZ3GbLbtvuwbMHs-vQ1d3QKZu8pCtzftf8FZSLrbhbyXzB4nFPsTrIuw5nFzpI8mjjEvIlg3pzQOp4E3nEKBIPremQOCJWn3I-J1TB8XeYS3Jz6Se4mXQYfD4t7XpiY8gu5IONE9hoInhFJAWRKsIrQXldWsYFlcSUQhpVcsuqsqVtVSpGCKVOMGX7wzkMiOm9jL2YnTbmjTYrZdJncuZ_0eUjXPkAUb4WT-LT59FEytIKQUmtdekolyV3XJR1r3ugj62VFlaRntygyWRecAu38_6T8Qkb_OReVsp0CfuA7WjCUPZxnkwuuqbqdKVNkX0eXQPNXKuhLWxN2H6pywk-zzFHi32PX5nWezfCR7YyA5K9T18s89i8h-UCxd7_OP5-XUqI_NPZDFufEtwdCEIoootTI-tO2BpwojUstTZc9sSyXmunqOB9MZrWjWktH5IG94y3ECBDB4VvGGGMCCaJgodWHbiwVDOjJOOV0lIgTtxk_HhY6zjEeSjmZiupXYYEytGnnP4pTUp-CG5Da41vlnyKc2P_eECOVMWWu9lq_wsrG8GV">