add non-regression test for issue 122674

This commit is contained in:
Rémy Rakic 2024-03-18 09:33:16 +00:00
parent 8beec62315
commit f3e9dfaed6
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
// Non-regression test for issue #122674: a change in the format args visitor missed nested awaits.
//@ edition: 2021
//@ check-pass
pub fn f1() -> impl std::future::Future<Output = Result<(), String>> + Send {
async {
should_work().await?;
Ok(())
}
}
async fn should_work() -> Result<String, String> {
let x = 1;
Err(format!("test: {}: {}", x, inner().await?))
}
async fn inner() -> Result<String, String> {
Ok("test".to_string())
}
fn main() {}