https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96805
Patrick Palka <ppalka at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ppalka at gcc dot gnu.org --- Comment #10 from Patrick Palka <ppalka at gcc dot gnu.org> --- Here's a more condensed testcase (accepted with -std=c++11/14, ICEs with -std=c++17/20): template <typename> class a { template <int b> struct c { template <bool> using t = int; t<b> m; }; };