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

16 lines
271 B
Rust
Raw Permalink Normal View History

2022-01-25 23:19:33 +00:00
// Regression test for #93197
//@ check-pass
//@ edition:2021
2022-01-25 23:19:33 +00:00
#![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() {}