| 143 | } |
| 144 | |
| 145 | struct no_strong_except { |
| 146 | no_strong_except() = default; |
| 147 | ~no_strong_except() noexcept(false) { |
| 148 | } |
| 149 | no_strong_except(no_strong_except&&) noexcept(false) { |
| 150 | } |
| 151 | no_strong_except& operator=(no_strong_except&&) noexcept(false) { |
| 152 | return *this; |
| 153 | } |
| 154 | |
| 155 | int operator()() const { |
| 156 | return 23383; |
| 157 | } |
| 158 | }; |
| 159 | |
| 160 | static_assert(!std::is_nothrow_move_constructible<no_strong_except>::value, ""); |
| 161 | static_assert(!std::is_nothrow_destructible<no_strong_except>::value, ""); |
nothing calls this directly
no outgoing calls
no test coverage detected