| 31 | struct info { int value; }; |
| 32 | |
| 33 | struct abstract_base_exception |
| 34 | { |
| 35 | virtual ~abstract_base_exception() { } |
| 36 | virtual int get_val() const = 0; |
| 37 | }; |
| 38 | |
| 39 | struct my_exception: |
| 40 | std::exception, |
nothing calls this directly
no outgoing calls
no test coverage detected