| 1247 | TYPE* ptr = nullptr; |
| 1248 | |
| 1249 | explicit reference(TYPE* _ptr) |
| 1250 | : ptr(_ptr) |
| 1251 | { |
| 1252 | } |
| 1253 | |
| 1254 | reference(const reference& /*other*/) noexcept = default; |
| 1255 | reference(reference&& /*other*/) noexcept = default; |
nothing calls this directly
no outgoing calls
no test coverage detected