| 6 | struct C {}; |
| 7 | |
| 8 | struct A { |
| 9 | A() = default; |
| 10 | explicit(true) A(const B&) {} |
| 11 | explicit(false) A(const C&) {} |
| 12 | explicit(true) operator B() const { return {}; }; |
| 13 | }; |
| 14 | |
| 15 | template<typename T> |
| 16 | struct Wrapper { |
nothing calls this directly
no outgoing calls
no test coverage detected