From b8eb3f6da0d4828f90816269645c9c4328942f7d Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 15 Jan 2022 18:25:25 -0800 Subject: [PATCH] Format all the ui test input files --- tests/ui/lifetime-span.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/ui/lifetime-span.rs b/tests/ui/lifetime-span.rs index 4e9e5d9..01981e6 100644 --- a/tests/ui/lifetime-span.rs +++ b/tests/ui/lifetime-span.rs @@ -10,12 +10,12 @@ pub trait Trait<'r> { #[async_trait] impl Trait for A { - async fn method(&self) { } + async fn method(&self) {} } #[async_trait] impl<'r> Trait<'r> for B { - async fn method(&self) { } + async fn method(&self) {} } #[async_trait] @@ -25,12 +25,12 @@ pub trait Trait2 { #[async_trait] impl Trait2 for A { - async fn method(&self) { } + async fn method(&self) {} } #[async_trait] impl<'r> Trait2<'r> for B { - async fn method(&'r self) { } + async fn method(&'r self) {} } fn main() {}