Skip to content

Commit

Permalink
Format all the ui test input files
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jan 16, 2022
1 parent ade6529 commit b8eb3f6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/ui/lifetime-span.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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() {}

0 comments on commit b8eb3f6

Please sign in to comment.