| 880 | }; |
| 881 | |
| 882 | struct Empty { |
| 883 | void draw(std::ostream &out) const { out << "Empty"; } |
| 884 | int empty() { return 1; } |
| 885 | }; |
| 886 | |
| 887 | struct CircleEmpty : Circle { |
| 888 | int empty() { return 2; } |
nothing calls this directly
no outgoing calls
no test coverage detected