<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">On Fri, Jun 21, 2013 at 1:46 PM, Richard Smith <span dir="ltr"><<a href="mailto:richard@metafoo.co.uk" target="_blank">richard@metafoo.co.uk</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div class="im">On Fri, Jun 21, 2013 at 12:31 PM, Serge Pavlov <<a href="mailto:sepavloff@gmail.com">sepavloff@gmail.com</a>> wrote:<br>


> With this fix diagnostics in some cases look unclear. For instance, in these<br>
> declarations:<br>
><br>
> template <class T> struct pr15466a;<br>
> template struct pr15466a { int a; };<br>
><br>
> the second is obviously an instantiation with template arguments missing.<br>
<br>
</div>I think you mean, it's obviously meant to be a definition of the<br>
primary template.<br>
<div class="im"><br>
> Compiler messages however may be confusing:<br>
><br>
>  t2.cpp:2:26: error: class cannot be defined in an explicit instantiation;<br>
> if this declaration is meant to be a class definition,<br>
>       remove the 'template' keyword<br>
> template struct pr15466a { int a; };<br>
> ~~~~~~~~~                ^<br>
> t2.cpp:2:17: error: redefinition of 'pr15466a' as different kind of symbol<br>
> template struct pr15466a { int a; };<br>
>                 ^<br>
> t2.cpp:1:27: note: previous definition is here<br>
> template <class T> struct pr15466a;<br>
>                           ^<br>
><br>
> As pr15466a in this example is already known as a template, maybe a message<br>
> like "missing argumet list" is more appropriate?<br>
<br>
</div>That makes sense to me, but I think it's somewhat orthogonal to this<br>
bug fix. We should also produce a "missing template parameter list"<br>
diagnostic for a case like:<br>
<br>
  template <class T> struct pr15466b;<br>
  struct pr15466b { int a; };<br></blockquote><div><br></div><div>Interesting. The general logic of the bug fix is that if a declaration starts as if a template instantiation, but provides a body, then it is likely meant to be either a non-template definition or a template specialization.</div>

<div>We decided to select one of these two alternatives based on whether template arguments are explicitly provided. </div><div><br></div><div>It sounds like you are suggesting to also consider the fact that the existing template may not have been defined as an alternative, in which case we should treat cases lacking explicit arguments as mis-entered template definitions (?).</div>

<div><br></div><div>In this latter case, with our recovering from failure by removing the template keyword (if no argument is provided), the issue becomes the same as the case that Richard brings up (without the 'template' keyword).</div>

<div><br></div><div style>The only adjustment that this bug fix could do for the case you presented is to not produce the "<span style="color:rgb(80,0,80)">cannot be defined in an explicit instantiation" diagnosis when the existing template does not have a definition. </span></div>

<div style><span style="color:rgb(80,0,80)"><br></span></div><div style><span style="color:rgb(80,0,80)">In other words, would you prefer the following diagnosis to the current one (above)?</span></div><div style><span style="color:rgb(80,0,80)"><br>

</span></div><div style><span style="color:rgb(80,0,80)">> t2.cpp:2:17: error: redefinition of 'pr15466a' as different kind of symbol</span><br style="color:rgb(80,0,80)"><span style="color:rgb(80,0,80)">> template struct pr15466a { int a; };</span><br style="color:rgb(80,0,80)">

<span style="color:rgb(80,0,80)">>                 ^</span><br style="color:rgb(80,0,80)"><span style="color:rgb(80,0,80)">> t2.cpp:1:27: note: previous definition is here</span><br style="color:rgb(80,0,80)"><span style="color:rgb(80,0,80)">> template <class T> struct pr15466a;</span><br style="color:rgb(80,0,80)">

<span style="color:rgb(80,0,80)">>                           ^</span><span style="color:rgb(80,0,80)"><br></span></div><div style><span style="color:rgb(80,0,80)"><br></span></div><div style><span style="color:rgb(80,0,80)">If so, I can quickly update the bug fix appropriately. If not, then the issue is probably whether and how the "redefinition" diagnosis should be issued...</span></div>

<div style><span style="color:rgb(80,0,80)"><br></span></div><div style><span style="color:rgb(80,0,80)">Thanks, </span></div><div style><span style="color:rgb(80,0,80)">-- Larisse. </span></div><div><br></div><div><br></div>

<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<div class=""><div class="h5"><br>
> 2013/6/22 Larisse Voufo <<a href="mailto:lvoufo@google.com">lvoufo@google.com</a>><br>
>><br>
>> Problem solved. r184577.<br>
>> I hope I got everything right.<br>
>> Thanks,<br>
>> -- Larisse.<br>
>><br>
>><br>
>> On Wed, Jun 19, 2013 at 2:17 PM, John McCall <<a href="mailto:rjmccall@apple.com">rjmccall@apple.com</a>> wrote:<br>
>>><br>
>>> On Jun 19, 2013, at 2:12 PM, Richard Smith <<a href="mailto:richard@metafoo.co.uk">richard@metafoo.co.uk</a>> wrote:<br>
>>> > On Wed, Jun 19, 2013 at 11:42 AM, John McCall <<a href="mailto:rjmccall@apple.com">rjmccall@apple.com</a>><br>
>>> > wrote:<br>
>>> >> On Jun 19, 2013, at 10:59 AM, Larisse Voufo <<a href="mailto:lvoufo@google.com">lvoufo@google.com</a>> wrote:<br>
>>> >><br>
>>> >> On Wed, Jun 19, 2013 at 10:43 AM, John McCall <<a href="mailto:rjmccall@apple.com">rjmccall@apple.com</a>><br>
>>> >> wrote:<br>
>>> >>><br>
>>> >>> On Jun 19, 2013, at 9:15 AM, Larisse Voufo <<a href="mailto:lvoufo@google.com">lvoufo@google.com</a>> wrote:<br>
>>> >>>> Just out of curiosity, I have noticed that Clang currently allows<br>
>>> >>>> the<br>
>>> >>>> following program:<br>
>>> >>>><br>
>>> >>>> template<typename T> T f() { return 13; }<br>
>>> >>>> template int f() { return 1; }<br>
>>> >>>><br>
>>> >>>> It essentially parses the body of the explicit instantiation only to<br>
>>> >>>> ignore it.<br>
>>> >>>> Was this a conscious decision?<br>
>>> >><br>
>>> >><br>
>>> >> I just spoke to Richard Smith about this, and it appears that the<br>
>>> >> current<br>
>>> >> behavior is a bit different from the way I just described it above.<br>
>>> >> The declaration for the template instantiation is parsed, but the<br>
>>> >> 'template'<br>
>>> >> keyword is ignored, which leads to two different behaviors for the<br>
>>> >> calls f()<br>
>>> >> and f<int>().<br>
>>> >> While f() returns 1, f<int>() returns 13. f() picks up the declaration<br>
>>> >> "int<br>
>>> >> f() { return 1; }" while f<int>() picks up the template declaration<br>
>>> >> and<br>
>>> >> implicitly instantiates it.<br>
>>> >><br>
>>> >>><br>
>>> >>><br>
>>> >>> No;  please file a bug.  You cannot define a function in an explicit<br>
>>> >>> instantiation.<br>
>>> >><br>
>>> >><br>
>>> >> I can quickly fix this or submit a patch. Should I still file a bug?<br>
>>> >><br>
>>> >><br>
>>> >> Fixing it is better. :)<br>
>>> >><br>
>>> >>>> GCC 4.6.3 rejects the program with "expected ‘;’ before ‘{’ token".<br>
>>> >>><br>
>>> >>> Well, hopefully we can do better than that.<br>
>>> >><br>
>>> >><br>
>>> >> What do you have in mind?<br>
>>> >><br>
>>> >><br>
>>> >> "error: cannot implement a function in an explicit instantiation"<br>
>>> >><br>
>>> >> or something along those lines.<br>
>>> ><br>
>>> > My suggestion was:<br>
>>> > * If the declarator-id is not a template-id, issue a "function cannot<br>
>>> > be defined in an explicit instantiation" diagnostic and recover by<br>
>>> > ignoring the 'template' keyword<br>
>>> > * If the declarator-id is a template-id, issue an "explicit<br>
>>> > specialization requires 'template<>'" diagnostic with a fixit to add<br>
>>> > the <>, and recover as if it were an explicit specialization<br>
>>><br>
>>> Ah, yes, I wasn't thinking about the different recovery paths.<br>
>>> Good point.<br>
>>><br>
>>> John.<br>
>><br>
>><br>
>><br>
>> _______________________________________________<br>
>> cfe-dev mailing list<br>
>> <a href="mailto:cfe-dev@cs.uiuc.edu">cfe-dev@cs.uiuc.edu</a><br>
>> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><br>
>><br>
><br>
><br>
><br>
> --<br>
> Thanks,<br>
> --Serge<br>
</div></div></blockquote></div><br></div></div>