| 20 | namespace N { |
| 21 | struct A {}; |
| 22 | struct B { |
| 23 | friend std::ostream &operator<<(std::ostream &os, const B &) { |
| 24 | return os << "B"; |
| 25 | } |
| 26 | }; |
| 27 | struct C {}; |
| 28 | static std::ostream &operator<<(std::ostream &os, const C &) { |
| 29 | return os << "C"; |
nothing calls this directly
no outgoing calls
no test coverage detected