| 201 | storage_t<T> storage_; |
| 202 | |
| 203 | constexpr optional_base() noexcept : init_(false), storage_(trivial_init) {}; |
| 204 | |
| 205 | constexpr explicit optional_base(only_set_initialized_t, bool init) noexcept : init_(init), storage_(trivial_init) {}; |
| 206 |
nothing calls this directly
no outgoing calls
no test coverage detected