<table border="1" cellspacing="0" cellpadding="8">
    <tr>
        <th>Issue</th>
        <td>
            <a href=http://email.email.llvm.org/c/eJylk82SoyAQx58GL12xFGI-Dh6SzaZqLvsOKK0yRcAFTNa338aYyZz2shaFQDc__t0NjVNzzXbFs7WMn1MrLqw4aRvhJrVl_MD48bnG9qsR6JuCtj18nICJC5A3q86sujCxurwdP9I-KBn_ATx1Atj-AnQQFG_v_WUdvMSs0-qMf0afS6USnF9LJlY0Ez_h6jyQSUftbEKjjgN6aFwcwI3opVUBwiCNgUHeEaQnhxtG3QLtnGxoyUsB2ulGzokCcR4xocjuLL4oK6QhBIyOoqVToqNJ626jwYhm3ijstCWaaz6xjQsI0laSBG7R9U1JQvRemn_qyL-n8uS9nJflQHEgWBeBcO6BKodfa-SpI3iAh_Mq1cfj70n7NEoyZGJsotu8YmidvaMP6cAu5dK-As4zVQt1FEeZySkOztdG2n6SPRr5mNFnkzf1EOMYUkH4lVpPEqYmp4zQxJj767cZvUsZoakOYcJAg2pblLtsqFUnuay2ndhtFS8OzaGpDm0pj9XuoARvRWZkgybU6XJxbvEBC4LGdB2y_1ega17w1ERZFqXY56pU-4ZXney2ZSkLybYF0jMweeLkzvcZZSIhm6kPZDQ6xPA2yhB0bxHr52vIoo4G6zbljlRS1VvnPSkxM8i2xTGGr_sLD1KfKrAUCUZ_l2b6uoDZIrxeVP8FPTsyRw>54016</a>
        </td>
    </tr>

    <tr>
        <th>Summary</th>
        <td>
            clang: incorrectly accepts addition with an array prvalue operand
        </td>
    </tr>

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

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

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

<pre>
    ```c++
int main()
{
    using IA = int[];

    IA{ 1, 2, 3 } + 0;
}
```
[expr.add]/1:
> For addition, either both operands shall have arithmetic or unscoped enumeration type, or one operand shall be a pointer to a completely-defined object type and the other shall have integral or unscoped enumeration type.

Array types are not allowed. Neither there is wording requiring the array-to-pointer conversion for an operand.
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJx9UsGS2yAM_Rp80cRjcJxsDj4kTTOzl_4DBsWmQ8AFnNR_X-E4mz3Vo8ESkp6ehDqv55btqqcoJk5ZqjOrjsYluEnjmPhg4vC8Y_vVCfRN0bgePo_A6jNQNGtOrDmzeg15B37mPOBM_ACRjxrY_gxUCKp39P68Ki8yq9mc8O8YSql1BhcXzuoVmtU_4eIDkMsk412GRpMGDND5NIAfMUinI8RBWguDvCPIQAE3TEYBZU4uKorSgG66UXBGgTSPmKHI7x2-UFaQjiBg9NQtVUmeDOVvo8WEdt5ovBpHaL77jSotQJBTiRL4hdc3JhmiD9L-l0f5fZTHEOS8XEfqA8H5BATnH6hL-LV2ng8Cj_DwQef3CfhnMiFrmYbMGJvkN68elHd3DDEXvOZZulfDZaHbWh_qgyySSRZbZaXrafjEXPkQqEM7g1QKxxS_3gAeRCOjLIVgDHdpp68hFlOw7ZDSGPMjigtJT_FTV9IUybD2_vptxuDzFMk0MU4YSWm2Fd8VQ1s3nfjQByWaXbPlO80PAjleuysqIRveFFZ2aGObF1IIhw9YIEinFSpMKyqRpea84vW-1FzvO9Fc5XXLuawk21ZIi2_LzKP0oS9Cu1Dqpj6S05qY4tspYzS9Q2yf-1_IKQ2eMmhak-zRyseMoVgYtEsH_wANSRzX">