| 534 | // test_exception_rvalue_abort |
| 535 | struct PyPrintDestructor { |
| 536 | PyPrintDestructor() = default; |
| 537 | PyPrintDestructor(const PyPrintDestructor &) = default; |
| 538 | ~PyPrintDestructor() { py::print("Print from destructor"); } |
| 539 | void throw_something() { throw std::runtime_error("error"); } |
no outgoing calls
no test coverage detected