From 17693eb54944377873deba31755e65ced8f24ea0 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 --- src/tools/miri/tests/pass/async-closure.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tools/miri/tests/pass/async-closure.rs b/src/tools/miri/tests/pass/async-closure.rs index e04acfc39cfbc..9b2fc2948bf45 100644 --- a/src/tools/miri/tests/pass/async-closure.rs +++ b/src/tools/miri/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; }