| 3 | struct OutOfSteakException {}; |
| 4 | |
| 5 | void translateException( const OutOfSteakException& x) { |
| 6 | PyErr_SetString(PyExc_UserWarning, "The meat is gone, go for the cheese...."); |
| 7 | }; |
| 8 | |
| 9 | void someFunction() { |
| 10 | throw OutOfSteakException(); |
nothing calls this directly
no outgoing calls
no test coverage detected