| 55 | |
| 56 | template <typename T> |
| 57 | class Box : public Base<T> { |
| 58 | public: |
| 59 | T get() const { return value_; } |
| 60 | T unwrap(); |
| 61 | |
| 62 | private: |
| 63 | T value_; |
| 64 | }; |
| 65 | |
| 66 | template <typename T> |
| 67 | T Box<T>::unwrap() { |
nothing calls this directly
no outgoing calls
no test coverage detected