* @brief A function that throws a `test_exception`. */
| 2164 | * @brief A function that throws a `test_exception`. |
| 2165 | */ |
| 2166 | void throws() |
| 2167 | { |
| 2168 | logln("Throwing exception..."); |
| 2169 | throw test_exception(); |
| 2170 | }; |
| 2171 | |
| 2172 | /** |
| 2173 | * @brief Check that exceptions are forwarded correctly by submit_task(). |
nothing calls this directly
no test coverage detected