| 5 | namespace testsuite { |
| 6 | |
| 7 | int32_t CppExceptionImpl::throw_an_exception() { |
| 8 | throw ExampleException(); |
| 9 | } |
| 10 | |
| 11 | int32_t CppExceptionImpl::call_throwing_interface(const /*not-null*/ std::shared_ptr<ThrowingInterface>& cb) { |
| 12 | cb->throw_exception(); |
nothing calls this directly
no test coverage detected