| 13 | namespace te = boost::te; |
| 14 | |
| 15 | struct Drawable { |
| 16 | void draw(std::ostream &out) const { |
| 17 | te::call([](auto const &self, auto &out) { self.draw(out); }, *this, out); |
| 18 | } |
| 19 | }; |
| 20 | |
| 21 | struct Square { |
| 22 | void draw(std::ostream &out) const { out << "Square"; } |
nothing calls this directly
no outgoing calls
no test coverage detected