| 641 | // vs non-const overloaded with identical params (selected via const_ tag). |
| 642 | struct Pet { |
| 643 | int Feed(const Cat*, int amount) { return 100 + amount; } |
| 644 | int Feed(const Dog*, int amount) { return 200 + amount; } |
| 645 | int Get(int x) { return 4000 + x; } |
| 646 | int Get(int x) const { return 5000 + x; } |
nothing calls this directly
no outgoing calls
no test coverage detected