From 1916a4a5244b8f788170f0ec0444b9e0f6772b54 Mon Sep 17 00:00:00 2001 From: The Miri Conjob Bot Date: Tue, 12 Sep 2023 05:33:59 +0000 Subject: [PATCH] fmt --- src/tools/miri/tests/pass/function_calls/abi_compat.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/tools/miri/tests/pass/function_calls/abi_compat.rs b/src/tools/miri/tests/pass/function_calls/abi_compat.rs index 2e1ab58db7a..064605d453a 100644 --- a/src/tools/miri/tests/pass/function_calls/abi_compat.rs +++ b/src/tools/miri/tests/pass/function_calls/abi_compat.rs @@ -9,7 +9,9 @@ struct Zst; #[derive(Copy, Clone)] struct Wrapper(T); -fn id(x: T) -> T { x } +fn id(x: T) -> T { + x +} fn test_abi_compat(t: T, u: U) { fn id(x: T) -> T {