https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109899
--- Comment #7 from Andrew Pinski <pinskia at gcc dot gnu.org> --- Reduced further (which shows PR 110810 is the same here): ``` struct class1 { class1(); ~class1(); }; using array = class1[1]; template <int N> void f() { array{}; } ```