remove no-longer needed rustfmt::skip

This commit is contained in:
Ralf Jung 2024-02-14 19:09:17 +01:00
parent 7a086ac887
commit 17693eb549

View file

@ -16,7 +16,6 @@ pub fn block_on<T>(fut: impl Future<Output = T>) -> T {
}
}
#[rustfmt::skip]
async fn call_once(f: impl async FnOnce(DropMe)) {
f(DropMe("world")).await;
}