about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2024-02-14 19:09:17 +0100
committerRalf Jung <post@ralfj.de>2024-02-14 19:09:17 +0100
commit17693eb54944377873deba31755e65ced8f24ea0 (patch)
tree34e26d80a6e11ee2fdbade149034d88ba69597c2
parent7a086ac8875b45adee3d2cff0f024205eb568d8d (diff)
downloadrust-17693eb54944377873deba31755e65ced8f24ea0.tar.gz
rust-17693eb54944377873deba31755e65ced8f24ea0.zip
remove no-longer needed rustfmt::skip
-rw-r--r--src/tools/miri/tests/pass/async-closure.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/tools/miri/tests/pass/async-closure.rs b/src/tools/miri/tests/pass/async-closure.rs
index e04acfc39cf..9b2fc2948bf 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<T>(fut: impl Future<Output = T>) -> T {
     }
 }
 
-#[rustfmt::skip]
 async fn call_once(f: impl async FnOnce(DropMe)) {
     f(DropMe("world")).await;
 }