<div dir="ltr">Dear All,<br><br>Consider the following code:<br><br><div>struct X{};</div><div>struct Y{};</div><div><br></div><div>struct B</div><div>{</div><div>    void f(X) { }</div><div>    void operator[](X){}</div><div>};</div><div><br></div><div>struct C</div><div>{</div><div>    void f(Y) { }</div><div>    void operator[](Y){}</div><div>};</div><div><br></div><div>struct D : B, C {};</div><div><br></div><div>int main()</div><div>{</div><div>    D d;</div><div>    d.f(X()); //This is erroneous in all compilers</div><div>    d[Y()];//this is accepted by clang and MSVC, rejected by GCC</div><div>}<br><br>What are the rules followed by clang to find the matching operator, that are different for operators and ordinary functions? Can someone elaborate on this difference compared to GCC from the standards perspective?<br><br>The original question (<a href="http://stackoverflow.com/questions/35373384/operator-lookup-into-template-base-classes">link</a>) was in a context where B, C and D are template classes. The same behaviour applies in that case for all compilers, but figuring out the causes now involves dependent name look up. Contributions to that discussion are also welcome.<br><br>Daniel<br><br><br></div></div>