// PR c++/91673 - ICE with noexcept in alias-declaration. // { dg-do compile { target c++17 } } template struct overload; template struct overload { using signature_t = Ret(Args...) noexcept(NoExcept); }; overload x;