Skip to content

Commit b8eb3f6

Browse files
committed
Format all the ui test input files
1 parent ade6529 commit b8eb3f6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/ui/lifetime-span.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ pub trait Trait<'r> {
1010

1111
#[async_trait]
1212
impl Trait for A {
13-
async fn method(&self) { }
13+
async fn method(&self) {}
1414
}
1515

1616
#[async_trait]
1717
impl<'r> Trait<'r> for B {
18-
async fn method(&self) { }
18+
async fn method(&self) {}
1919
}
2020

2121
#[async_trait]
@@ -25,12 +25,12 @@ pub trait Trait2 {
2525

2626
#[async_trait]
2727
impl Trait2 for A {
28-
async fn method(&self) { }
28+
async fn method(&self) {}
2929
}
3030

3131
#[async_trait]
3232
impl<'r> Trait2<'r> for B {
33-
async fn method(&'r self) { }
33+
async fn method(&'r self) {}
3434
}
3535

3636
fn main() {}

0 commit comments

Comments
 (0)