| 19 | } |
| 20 | }; |
| 21 | int main() { |
| 22 | std::shared_ptr<A> a = std::make_shared<A>(); |
| 23 | std::shared_ptr<B> b = std::make_shared<B>(); |
| 24 | a->pointer = b; |
| 25 | b->pointer = a; |
| 26 | |
| 27 | return 0; |
| 28 | } |
nothing calls this directly
no outgoing calls
no test coverage detected