https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110797
Andrew Pinski <pinskia at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|GCC rejects std::template |template keyword used as a |same_as<int> form |distinguisher with concept | |to reject for auto usage Keywords| |rejects-valid --- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> --- Reduced testcase: ``` namespace tt { template<typename a, typename b> concept t = true; } tt::template t<int> auto i = 0; ```