Constructors. @li **(1)** copy constructor. @li **(2)** move constructor. @li **(3)** the constructed value stores a reference to `t`'s character array. @li **(4)** the constructed value stores a `const` reference to `t`. @li **(5)** the constructed value stores an rvalue reference to `t`. @li **(6)** the constructed value stores a copy
| 190 | @{ |
| 191 | */ |
| 192 | value_ref( |
| 193 | value_ref const&) = default; |
| 194 | |
| 195 | /// Overload |
| 196 | value_ref( |
nothing calls this directly
no test coverage detected