rust/tests/ui/async-await/issue-93197.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
269 B
Rust
Raw Normal View History

2022-01-25 23:19:33 +00:00
// Regression test for #93197
2022-01-26 18:47:13 +00:00
// check-pass
2022-01-25 23:19:33 +00:00
// edition:2021
#![feature(try_blocks)]
use std::sync::{mpsc, mpsc::SendError};
pub async fn foo() {
let (tx, _) = mpsc::channel();
let _: Result<(), SendError<&str>> = try { tx.send("hello")?; };
}
fn main() {}