blob: 95ac3abdc3aa34d5c40a2e21b8a6e55cf65ea99d [file] [log] [blame] [edit]
// Regression test for #62312
//@ check-pass
//@ edition:2018
async fn make_boxed_object() -> Box<dyn Send> {
Box::new(()) as _
}
async fn await_object() {
let _ = make_boxed_object().await;
}
fn main() {}