The following invalid code snippet triggers an ICE on mainline:

===================================================
struct A {};

template<typename... T> struct B : T...
{
  B() : T(x)... {}
};

B<A> b;
===================================================

bug.cc: In constructor 'B<T>::B()':
bug.cc:5: error: 'x' was not declared in this scope
bug.cc: In constructor 'B<T>::B() [with T = A]':
bug.cc:8:   instantiated from here
bug.cc:5: internal compiler error: tree check: expected tree_vec, have
error_mark in tsubst_initializer_list, at cp/pt.c:15212
Please submit a full bug report, [etc.]


-- 
           Summary: [4.3 regression] ICE with invalid initializer list in
                    variadic template
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Keywords: ice-on-invalid-code, error-recovery, 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=35243

Reply via email to