Skip to content

Commit 0318b70

Browse files
committed
tidy
1 parent cdd6bba commit 0318b70

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/test/ui/layout/unsafe-cell-hides-niche.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ macro_rules! assert_size_eq {
3030
($ty:ty, $size:expr, $optioned_size:expr) => {
3131
assert_size_eq!($ty, $size);
3232
assert_size_eq!(Option<$ty>, $optioned_size);
33-
const _: () = assert!($size == $optioned_size || size_of::<$ty>() < size_of::<Option<$ty>>());
33+
const _: () = assert!(
34+
$size == $optioned_size ||
35+
size_of::<$ty>() < size_of::<Option<$ty>>()
36+
);
3437
};
3538
}
3639

0 commit comments

Comments
 (0)