Skip to content

Commit 3f5e5d6

Browse files
committed
fmt
1 parent cae1898 commit 3f5e5d6

File tree

1 file changed

+3
-2
lines changed
  • compiler/rustc_trait_selection/src/traits/select

1 file changed

+3
-2
lines changed

compiler/rustc_trait_selection/src/traits/select/mod.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1032,8 +1032,9 @@ impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> {
10321032
AutoImplCandidate(..) => {}
10331033
// FIXME check if this is right, but this would allow Sized impls
10341034
BuiltinCandidate { .. } => {}
1035-
_ => { // reject all other types of candidates
1036-
return Err(Unimplemented)
1035+
_ => {
1036+
// reject all other types of candidates
1037+
return Err(Unimplemented);
10371038
}
10381039
}
10391040
}

0 commit comments

Comments
 (0)