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++/78003] [7 Regression] c++17: ICE in build_over_call, at cp/call.c:7847


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

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2016-10-17
                 CC|                            |trippels at gcc dot gnu.org
            Summary|c++17: ICE in               |[7 Regression] c++17: ICE
                   |build_over_call, at         |in build_over_call, at
                   |cp/call.c:7847              |cp/call.c:7847
     Ever confirmed|0                           |1

--- Comment #1 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
struct A;
using variant_nil = int;
template <typename Fun, typename Proj = A>
void variant_visit_(int, variant_nil, Fun, Proj = {});
struct A {};
void get() {
  variant_visit_(0, 0, int{});
}

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