https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100102
Patrick Palka <ppalka at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Assignee|unassigned at gcc dot gnu.org |ppalka at gcc dot gnu.org --- Comment #17 from Patrick Palka <ppalka at gcc dot gnu.org> --- Reduced valid reproducer: template<int()> struct ratio; template<class, class> struct duration { static constexpr int _S_gcd(); template<class> using __is_harmonic = ratio<_S_gcd>; using type = __is_harmonic<int>; };