Fix E0373 code example

This commit is contained in:
1000teslas 2021-01-14 21:52:38 +11:00
parent 174135fb3b
commit 63deae5e25

View file

@ -53,7 +53,7 @@ about safety.
This error may also be encountered while using `async` blocks:
```compile_fail,E0373
```compile_fail,E0373,edition2018
use std::{sync::Arc, future::Future, pin::Pin, task::{Context, Poll}};
async fn f() {