| 114 | class Cat : virtual public Animal { |
| 115 | public: |
| 116 | Cat() = default; |
| 117 | Cat(const Cat &) = default; |
| 118 | Cat &operator=(const Cat &) = default; |
| 119 | ~Cat() override = default; |
nothing calls this directly
no outgoing calls
no test coverage detected