| 558 | { |
| 559 | public: |
| 560 | int async_callback(AsyncResult<ssize_t>* ar) |
| 561 | { |
| 562 | return ::async_callback(this, ar); |
| 563 | } |
| 564 | void do_test(IAsyncFile* f) |
| 565 | { |
| 566 | f->pread(nullptr, 200, 300, {this, &TestAsyncFS::async_callback}); |
nothing calls this directly
no test coverage detected