| 283 | { |
| 284 | public: |
| 285 | constexpr coroutine_base_value(int value) : value_(value) {} |
| 286 | constexpr operator bool() const { return false; } |
| 287 | constexpr int get() const { return value_; } |
| 288 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected