| 111 | // test_lambda_closure_cleanup |
| 112 | struct Payload { |
| 113 | Payload() { print_default_created(this); } |
| 114 | ~Payload() { print_destroyed(this); } |
| 115 | Payload(const Payload &) { print_copy_created(this); } |
| 116 | Payload(Payload &&) noexcept { print_move_created(this); } |
nothing calls this directly
no test coverage detected