Skip to content

Commit 25f0294

Browse files
committed
remove unnecessary pair of parens
1 parent 79a99bc commit 25f0294

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ui/traits/impl-2.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub mod Foo {
1010
}
1111

1212
mod Bar {
13-
impl<'a> dyn (crate::Foo::Trait) + 'a {
13+
impl<'a> dyn crate::Foo::Trait + 'a {
1414
fn bar(&self) { self.foo() }
1515
}
1616
}

0 commit comments

Comments
 (0)