| 39 | TEST_UNCAUGHT_EXCEPTION(uncaught_exception_int) { throw 42; } |
| 40 | |
| 41 | TEST_SEGFAULT(segfault) { |
| 42 | char *a = 0; |
| 43 | char b = a[42]; |
| 44 | std::cout << "result: " << b << std::endl; |
| 45 | } |
| 46 | |
| 47 | TEST_ABORT(abort) { abort(); } |
| 48 |
nothing calls this directly
no outgoing calls
no test coverage detected