https://gcc.gnu.org/bugzilla/show_bug.cgi?id=116167
--- Comment #2 from Larry Smith <admin at hexadigm dot com> --- Thanks for the quick reply. Probably a very rare scenario so a fix maybe low priority, but for my purposes the situation is required in a particular SFINAE context for an open source function traits library (https://github.com/HexadigmAdmin/FunctionTraits). Am depending on the failure to determine if a non-static member function is declared noexcept but it fails to work if the function isn't overloaded (due to the issue). Fortunately I can work around it for now (on GCC only will test if it's overloaded and defer to the "static_cast" as-is - if not overloaded I can determine if it's noexcept using other means). Thanks again.