| 614 | } |
| 615 | |
| 616 | void |
| 617 | testMoveOnly() |
| 618 | { |
| 619 | net::io_context ioc; |
| 620 | stream<test::stream> ws{ioc}; |
| 621 | ws.async_write_some( |
| 622 | true, net::const_buffer{}, |
| 623 | move_only_handler{}); |
| 624 | } |
| 625 | |
| 626 | struct copyable_handler |
| 627 | { |
nothing calls this directly
no test coverage detected