We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16033d1 commit a45cde5Copy full SHA for a45cde5
src/test/ui/async-await/async-await.rs
@@ -99,12 +99,10 @@ fn async_fn_with_impl_future_named_lifetime<'a>(x: &'a u8) -> impl Future<Output
99
}
100
101
102
-/* FIXME(cramertj) support when `type T<'a, 'b> = impl;` works
103
async fn async_fn_multiple_args(x: &u8, _y: &u8) -> u8 {
104
- await!(wake_and_yield_once());
+ wake_and_yield_once().await;
105
*x
106
107
-*/
108
109
async fn async_fn_multiple_args_named_lifetime<'a>(x: &'a u8, _y: &'a u8) -> u8 {
110
wake_and_yield_once().await;
0 commit comments