blob: 8d3488e9d065446b5dfb3566d1284847871c0327 (
plain)
1
2
3
4
5
6
7
8
|
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(())
}
|