1
Fork 0

Gate async fn trait bound modifier on async_trait_bounds

This commit is contained in:
Michael Goulet 2024-11-04 19:29:02 +00:00
parent a6f2f00de8
commit 59e3e8934e
28 changed files with 86 additions and 47 deletions

View file

@ -4,7 +4,7 @@
//@ aux-build: executor.rs
extern crate executor;
async fn call_once(f: impl async FnOnce()) {
async fn call_once(f: impl AsyncFnOnce()) {
f().await;
}