Fix FIXME in extract1.C

This commit is contained in:
Marek Polacek
2025-12-15 18:55:03 -05:00
parent c5798790c8
commit 1d72bef8aa

View File

@@ -178,6 +178,6 @@ constexpr auto a10 = extract<int* B::*>(^^B::p);
constexpr auto a11 = extract<int* const B::*>(^^B::p);
constexpr auto a12 = extract<int const* const B::*>(^^B::p);
// FIXME adding noexcept should be allowed
// constexpr auto a13 = extract<int (*)() noexcept>(^^B::fn3);
// constexpr auto a14 = extract<int (B::*)() noexcept>(^^B::fn);
// FIXME removing noexcept should be allowed
// constexpr auto a13 = extract<int (*)()>(^^B::fn4);
// constexpr auto a14 = extract<int (B::*)()>(^^B::fn2);