This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/35986] New: [4.1/4.2/4.3/4.4 regression] ICE with ambiguous template functions


The following invalid code snippet triggers an ICE since GCC 4.0.1:

================================
namespace
{
  template<int> void foo(...);
}

template<int> void foo(...);

void bar()
{
  foo<0>(0);
}
================================

bug.cc: In function 'void bar()':
bug.cc:10: internal compiler error: Segmentation fault
Please submit a full bug report, [etc.]

In GCC 4.0.0 and earlier we got a correct error message:
bug.cc: In function 'void bar()':
bug.cc:10: error: call of overloaded 'foo(int)' is ambiguous
bug.cc:6: note: candidates are: void foo(...) [with int <anonymous> = 0]
bug.cc:3: note:                 void<unnamed>::foo(...) [with int <anonymous> =
0]


-- 
           Summary: [4.1/4.2/4.3/4.4 regression] ICE with ambiguous template
                    functions
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Keywords: ice-on-invalid-code, monitored
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: reichelt at gcc dot gnu dot org


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]