From f3e9dfaed6c4d44fc0a5182221c31e5b0ff038fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Rakic?= Date: Mon, 18 Mar 2024 09:33:16 +0000 Subject: [PATCH] add non-regression test for issue 122674 --- tests/ui/fmt/nested-awaits-issue-122674.rs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tests/ui/fmt/nested-awaits-issue-122674.rs diff --git a/tests/ui/fmt/nested-awaits-issue-122674.rs b/tests/ui/fmt/nested-awaits-issue-122674.rs new file mode 100644 index 0000000000000..f250933dadb48 --- /dev/null +++ b/tests/ui/fmt/nested-awaits-issue-122674.rs @@ -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> + Send { + async { + should_work().await?; + Ok(()) + } +} + +async fn should_work() -> Result { + let x = 1; + Err(format!("test: {}: {}", x, inner().await?)) +} + +async fn inner() -> Result { + Ok("test".to_string()) +} + +fn main() {}