| 295 | |
| 296 | template <bool RequiresNoexcept, typename T, typename Args> |
| 297 | struct is_noexcept_correct : std::true_type {}; |
| 298 | template <typename T, typename... Args> |
| 299 | struct is_noexcept_correct<true, T, identity<Args...>> |
| 300 | : std::integral_constant<bool, |
nothing calls this directly
no outgoing calls
no test coverage detected