(_: *const ())
| 26 | fn dummy_raw_waker() -> RawWaker { |
| 27 | fn no_op(_: *const ()) {} |
| 28 | fn clone(_: *const ()) -> RawWaker { |
| 29 | dummy_raw_waker() |
| 30 | } |
| 31 | |
| 32 | let vtable = &RawWakerVTable::new(clone, no_op, no_op, no_op); |
| 33 | RawWaker::new(0 as *const (), vtable) |
no test coverage detected