public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/54310] New: Order of operations during overload resolution
@ 2012-08-18  8:04 zeratul976 at hotmail dot com
  2013-07-07 17:35 ` [Bug c++/54310] " zeratul976 at hotmail dot com
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: zeratul976 at hotmail dot com @ 2012-08-18  8:04 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54310

             Bug #: 54310
           Summary: Order of operations during overload resolution
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: zeratul976@hotmail.com


GCC accepts the following code:


template <typename T>
struct meta
{
    typedef typename T::type type;
};

struct S{};

template <typename T>
typename meta<T>::type foo(T, S);

int foo(int, int);      

int main()
{
    foo(0, 0);
}


Clang rejects this code with the following error:

test.cpp:4:22: error: type 'int' cannot be used prior to '::' because it has no
members
    typedef typename T::type type;
                     ^
test.cpp:10:10: note: in instantiation of template class 'meta<int>' requested
here
typename meta<T>::type foo(T, S);
         ^
test.cpp:10:24: note: while substituting deduced template arguments into
function template 'foo' [with T = int]
typename meta<T>::type foo(T, S);
                       ^

I believe the code is invalid (and clang's error is correct), for the following
reasons:

1. Template argument deduction should be performed on the template candidate
*before* to discarding it due to a type mismatch for the second parameter
(expected S, got int). Section 13.3.1/7 of the standard says (emphasis mine):
"In each case where a candidate is a function template, candidate function
template specializations are generated using template argument deduction. Those
candidates are *then* handled as candidate functions in the usual way. A given
name can refer to one or more function templates and also to a set of
overloaded non-template functions. In such a case, the candidate functions
generated from each function template are combined with the set of non-template
candidate functions."

2. Template argument deduction on the template candidate should fail with a
hard error (not SFINAE), because the error that occurs (T::type not being valid
for T = int) is not in the immediate context of the function type. (Section
14.8.2/8, emphasis mine: "If a substitution results in an invalid type or
expression, type deduction fails. [...] Only invalid types and expressions *in
the immediate context* of the function type and its template parameter types
can result in a deduction failure. [...]").


GCC does reject the following example:


template <typename T>
struct meta
{
    typedef typename T::type type;
};

template <typename T>
typename meta<T>::type foo(T);

int foo(int);      

int main()
{
    foo(0);
}


With the following error:

test.cpp: In instantiation of 'struct meta<int>':
test.cpp:8:24:   required by substitution of 'template<class T> typename
meta::type foo(T) [with T = int]'
test.cpp:14:10:   required from here
test.cpp:4:30: error: 'int' is not a class, struct, or union type
     typedef typename T::type type;
                              ^

suggesting that GCC already obeys point (2) above, and therefore the problem is
likely to be with point (1).


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug c++/54310] Order of operations during overload resolution
  2012-08-18  8:04 [Bug c++/54310] New: Order of operations during overload resolution zeratul976 at hotmail dot com
@ 2013-07-07 17:35 ` zeratul976 at hotmail dot com
  2013-08-21 10:25 ` paolo.carlini at oracle dot com
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: zeratul976 at hotmail dot com @ 2013-07-07 17:35 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54310

--- Comment #1 from Nathan Ridge <zeratul976 at hotmail dot com> ---
Richard Smith has suggested that GCC is actually allowed not to instantiate
'meta<int>' as per [temp.inst]/p6:

"If the overload resolution process can determine the correct function to call
without instantiating a class template definition, it is unspecified whether
that instantiation actually takes place."

If this is really what's happening - GCC is not instantiating 'meta<int>'
because it can determine without doing so that the first overload of 'foo' will
not be chosen - then I guess we can close this PR as INVALID.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug c++/54310] Order of operations during overload resolution
  2012-08-18  8:04 [Bug c++/54310] New: Order of operations during overload resolution zeratul976 at hotmail dot com
  2013-07-07 17:35 ` [Bug c++/54310] " zeratul976 at hotmail dot com
@ 2013-08-21 10:25 ` paolo.carlini at oracle dot com
  2014-05-13 15:44 ` paolo.carlini at oracle dot com
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: paolo.carlini at oracle dot com @ 2013-08-21 10:25 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54310

--- Comment #2 from Paolo Carlini <paolo.carlini at oracle dot com> ---
Current ICC also accepts this.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug c++/54310] Order of operations during overload resolution
  2012-08-18  8:04 [Bug c++/54310] New: Order of operations during overload resolution zeratul976 at hotmail dot com
  2013-07-07 17:35 ` [Bug c++/54310] " zeratul976 at hotmail dot com
  2013-08-21 10:25 ` paolo.carlini at oracle dot com
@ 2014-05-13 15:44 ` paolo.carlini at oracle dot com
  2014-05-13 16:14 ` paolo at gcc dot gnu.org
  2014-05-13 16:15 ` paolo.carlini at oracle dot com
  4 siblings, 0 replies; 6+ messages in thread
From: paolo.carlini at oracle dot com @ 2014-05-13 15:44 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54310

--- Comment #3 from Paolo Carlini <paolo.carlini at oracle dot com> ---
Current SolarisStudio also accepts it. I guess I'm going to add the testcase
and close the bug.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug c++/54310] Order of operations during overload resolution
  2012-08-18  8:04 [Bug c++/54310] New: Order of operations during overload resolution zeratul976 at hotmail dot com
                   ` (2 preceding siblings ...)
  2014-05-13 15:44 ` paolo.carlini at oracle dot com
@ 2014-05-13 16:14 ` paolo at gcc dot gnu.org
  2014-05-13 16:15 ` paolo.carlini at oracle dot com
  4 siblings, 0 replies; 6+ messages in thread
From: paolo at gcc dot gnu.org @ 2014-05-13 16:14 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54310

--- Comment #4 from paolo at gcc dot gnu.org <paolo at gcc dot gnu.org> ---
Author: paolo
Date: Tue May 13 16:14:19 2014
New Revision: 210385

URL: http://gcc.gnu.org/viewcvs?rev=210385&root=gcc&view=rev
Log:
2014-05-13  Paolo Carlini  <paolo.carlini@oracle.com>

    PR c++/54310
    * g++.dg/template/pr54310.C: New.

Added:
    trunk/gcc/testsuite/g++.dg/template/pr54310.C
Modified:
    trunk/gcc/testsuite/ChangeLog


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug c++/54310] Order of operations during overload resolution
  2012-08-18  8:04 [Bug c++/54310] New: Order of operations during overload resolution zeratul976 at hotmail dot com
                   ` (3 preceding siblings ...)
  2014-05-13 16:14 ` paolo at gcc dot gnu.org
@ 2014-05-13 16:15 ` paolo.carlini at oracle dot com
  4 siblings, 0 replies; 6+ messages in thread
From: paolo.carlini at oracle dot com @ 2014-05-13 16:15 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54310

Paolo Carlini <paolo.carlini at oracle dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |WORKSFORME

--- Comment #5 from Paolo Carlini <paolo.carlini at oracle dot com> ---
Done.


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-05-13 16:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-08-18  8:04 [Bug c++/54310] New: Order of operations during overload resolution zeratul976 at hotmail dot com
2013-07-07 17:35 ` [Bug c++/54310] " zeratul976 at hotmail dot com
2013-08-21 10:25 ` paolo.carlini at oracle dot com
2014-05-13 15:44 ` paolo.carlini at oracle dot com
2014-05-13 16:14 ` paolo at gcc dot gnu.org
2014-05-13 16:15 ` paolo.carlini at oracle dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).