add non-regression test for issue 122674
This commit is contained in:
parent
8beec62315
commit
f3e9dfaed6
22
tests/ui/fmt/nested-awaits-issue-122674.rs
Normal file
22
tests/ui/fmt/nested-awaits-issue-122674.rs
Normal 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() {}
|
Loading…
Reference in New Issue
Block a user