summaryrefslogtreecommitdiff
path: root/ops/optimizer_tests/issue16934_fast.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ops/optimizer_tests/issue16934_fast.rs')
-rw-r--r--ops/optimizer_tests/issue16934_fast.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/ops/optimizer_tests/issue16934_fast.rs b/ops/optimizer_tests/issue16934_fast.rs
deleted file mode 100644
index 8d3488e9d..000000000
--- a/ops/optimizer_tests/issue16934_fast.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-async fn send_stdin(state: &mut OpState, v: i32) -> Result<(), anyhow::Error> {
- // @test-attr:fast
- //
- // https://github.com/denoland/deno/issues/16934
- //
- // OpState borrowed across await point is not allowed, as it will likely panic at runtime.
- Ok(())
-}