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

--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
Reduced test-case:

$ cat ice.ii
template <template <typename, typename> class a> class b {
  using c = int;
  using f = a<unsigned, c>;
  f::d;
  void e() {
    [&] { d(); };
  }
  void d();
};

Reply via email to