https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93083
--- Comment #2 from Hana Dusíková <hanicka at hanicka dot net> --- Same error is also triggered by template partial specialization: ``` template <int N> struct literal { constexpr literal(const char (&input)[N]) noexcept { } constexpr literal(const literal &) noexcept { } }; template <literal Name, int id> struct field { }; template <literal Name> struct field<Name, 1u> { }; ```