<html>
    <head>
      <base href="https://llvm.org/bugs/" />
    </head>
    <body><span class="vcard"><a class="email" href="mailto:richard-llvm@metafoo.co.uk" title="Richard Smith &lt;richard-llvm&#64;metafoo.co.uk&gt;"> <span class="fn">Richard Smith</span></a>
</span> changed
              <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed" title="RESOLVED INVALID - Parse error with ref-qualifier combined with equal sign" href="https://urldefense.proofpoint.com/v2/url?u=https-3A__llvm.org_bugs_show-5Fbug.cgi-3Fid-3D24208&d=AwMBaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=pF93YEPyB-J_PERP4DUZOJDzFVX5ZQ57vQk33wu0vio&m=iwyiTSjpVQyve1Iq-bgzLYOWiOtYu5278BUDjeUNfj8&s=ajWunpxJiEixMsFzpE-cEKrjFCANdmNIjAK0PiX8Rxs&e=">bug 24208</a>
        <br>
             <table border="1" cellspacing="0" cellpadding="8">
          <tr>
            <th>What</th>
            <th>Removed</th>
            <th>Added</th>
          </tr>

         <tr>
           <td style="text-align:right;">Status</td>
           <td>NEW
           </td>
           <td>RESOLVED
           </td>
         </tr>

         <tr>
           <td style="text-align:right;">CC</td>
           <td>
                
           </td>
           <td>richard-llvm@metafoo.co.uk
           </td>
         </tr>

         <tr>
           <td style="text-align:right;">Resolution</td>
           <td>---
           </td>
           <td>INVALID
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed" title="RESOLVED INVALID - Parse error with ref-qualifier combined with equal sign" href="https://urldefense.proofpoint.com/v2/url?u=https-3A__llvm.org_bugs_show-5Fbug.cgi-3Fid-3D24208-23c1&d=AwMBaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=pF93YEPyB-J_PERP4DUZOJDzFVX5ZQ57vQk33wu0vio&m=iwyiTSjpVQyve1Iq-bgzLYOWiOtYu5278BUDjeUNfj8&s=dbeLBASq4vjm1pt3M8EiXRSvYmghxLr9sz-Z5FVv4pE&e=">Comment # 1</a>
              on <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed" title="RESOLVED INVALID - Parse error with ref-qualifier combined with equal sign" href="https://urldefense.proofpoint.com/v2/url?u=https-3A__llvm.org_bugs_show-5Fbug.cgi-3Fid-3D24208&d=AwMBaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=pF93YEPyB-J_PERP4DUZOJDzFVX5ZQ57vQk33wu0vio&m=iwyiTSjpVQyve1Iq-bgzLYOWiOtYu5278BUDjeUNfj8&s=ajWunpxJiEixMsFzpE-cEKrjFCANdmNIjAK0PiX8Rxs&e=">bug 24208</a>
              from <span class="vcard"><a class="email" href="mailto:richard-llvm@metafoo.co.uk" title="Richard Smith &lt;richard-llvm&#64;metafoo.co.uk&gt;"> <span class="fn">Richard Smith</span></a>
</span></b>
        <pre>&= is a single token.

<span class="quote">> There is no ambiguity with any other syntactical feature of the language.</span >

Ha! Try these:

template<typename> struct X {};
void f(X<int>={}); // error, >= is a single token

bool b = sizeof new int*==sizeof new void*; // error, forms '*=' '=', not '*'
'=='

struct Y {}; Y operator%(Y, Y); Y operator+(Y, Y);
Y (*fp)(Y, Y) = true?operator%:operator+; // error, '%:' is alternative token
for '#'</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>