| 1341 | const from *p; |
| 1342 | |
| 1343 | constexpr explicit constexpr_ptr(const from *ptr) noexcept : p(ptr) {} |
| 1344 | |
| 1345 | constexpr to operator*() const noexcept { return static_cast<to>(*p); } |
| 1346 |
nothing calls this directly
no outgoing calls
no test coverage detected