Skip to content

Commit acf9398

Browse files
committed
Rustfmt
1 parent 74b9232 commit acf9398

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/value_and_place.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -828,9 +828,7 @@ pub(crate) fn assert_assignable<'tcx>(
828828
}
829829
}
830830
}
831-
(ty::Array(a, _), ty::Array(b, _)) => {
832-
assert_assignable(fx, *a, *b)
833-
}
831+
(ty::Array(a, _), ty::Array(b, _)) => assert_assignable(fx, *a, *b),
834832
_ => {
835833
assert_eq!(
836834
from_ty, to_ty,

0 commit comments

Comments
 (0)