diff options
Diffstat (limited to 'ops/optimizer_tests/async_result.rs')
-rw-r--r-- | ops/optimizer_tests/async_result.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ops/optimizer_tests/async_result.rs b/ops/optimizer_tests/async_result.rs new file mode 100644 index 000000000..c1602ec49 --- /dev/null +++ b/ops/optimizer_tests/async_result.rs @@ -0,0 +1,7 @@ +async fn op_read( + state: Rc<RefCell<OpState>>, + rid: ResourceId, + buf: &mut [u8], +) -> Result<u32, Error> { + // @test-attr:fast +} |