| 103 | class Animal { |
| 104 | public: |
| 105 | Animal() = default; |
| 106 | Animal(const Animal &) = default; |
| 107 | Animal &operator=(const Animal &) = default; |
| 108 | virtual Animal *clone_raw_ptr() const = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected