[Bug c++/78003] [7 Regression] c++17: ICE in build_over_call, at cp/call.c:7847
trippels at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Mon Oct 17 07:30:00 GMT 2016
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{});
}
More information about the Gcc-bugs
mailing list