<div class="gmail_quote">On Fri, Jun 8, 2012 at 2:42 PM, David Blaikie <span dir="ltr"><<a href="mailto:dblaikie@gmail.com" target="_blank">dblaikie@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On Fri, Jun 8, 2012 at 2:35 PM, Richard Smith<br>
<<a href="mailto:richard-llvm@metafoo.co.uk">richard-llvm@metafoo.co.uk</a>> wrote:<br>
> Author: rsmith<br>
> Date: Fri Jun  8 16:35:42 2012<br>
> New Revision: 158231<br>
><br>
> URL: <a href="http://llvm.org/viewvc/llvm-project?rev=158231&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=158231&view=rev</a><br>
> Log:<br>
> PR13051: Only suggest the 'template' and 'operator' keywords when performing<br>
> typo-correction after a scope specifier.<br></blockquote><div>[...] </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">> +    f(&S<int>::tempalte f<int>); // expected-error{{did you mean 'template'?}}<br>

> +    f(&S<int>::opeartor bool); // expected-error{{did you mean 'operator'?}}<br>
<br>
Are there any negative test cases you should include to ensure we<br>
aren't suggesting operator/template in inappropriate situations? (as<br>
per the patch description)<br></blockquote><div><br></div><div>Sorry, the patch description is ambiguous. I meant:</div><div><br></div><div>"When performing typo-correction after a scope specifier, the only keywords which should be suggested are 'template' and 'operator'."</div>
<div><br></div><div>rather than</div><div><br></div><div>"When performing typo-correction, the keywords 'template' and 'operator' should only be suggested after a scope specifier."</div><div><br>
</div><div>Hence my negative test case is:</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
> +    f(&S<int>::foo); // expected-error-re{{no member named 'foo' in 'PR13051::S<int>'$}}<br></blockquote><div><br></div><div>... which used to suggest that I meant S<int>::for.</div>
<div><br></div><div>- Richard </div></div>