From 911aebe79a926e1e1e0da1d56300677141d18faa Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Wed, 14 Feb 2024 19:09:17 +0100 Subject: [PATCH] remove no-longer needed rustfmt::skip --- tests/pass/async-closure.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/pass/async-closure.rs b/tests/pass/async-closure.rs index e04acfc39c..9b2fc2948b 100644 --- a/tests/pass/async-closure.rs +++ b/tests/pass/async-closure.rs @@ -16,7 +16,6 @@ pub fn block_on(fut: impl Future) -> T { } } -#[rustfmt::skip] async fn call_once(f: impl async FnOnce(DropMe)) { f(DropMe("world")).await; }