Skip to content

Commit

Permalink
add non-regression test for issue 122674
Browse files Browse the repository at this point in the history
  • Loading branch information
lqd committed Mar 18, 2024
1 parent 8beec62 commit 737311f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions tests/ui/fmt/issue-122674-nested-await.rs
Original file line number Diff line number Diff line change
@@ -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() {}

0 comments on commit 737311f

Please sign in to comment.