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++/78690] [7 Regression] ICE in cxx_incomplete_type_diagnostic, at cp/typeck2.c:552


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

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Another testcase for this:
struct C;

template <typename T>
struct A
{
  struct C { static void bar (); };
};

template <typename T>
struct B
{
  using A<T>::C;
  void
  foo () { C.bar (); }
};

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