Skip to content

Commit ab421a1

Browse files
committed
fix tidy errors
1 parent f426177 commit ab421a1

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/test/ui/const-generics/const_evaluatable_checked/nested-abstract-consts-2.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,5 @@ fn main() {
3131
assert_eq!((Generic::<10>).bar(), 11);
3232
}
3333

34-
// Test that the ``ConstU64<{ K + 1 - 1}>`` bound on ``bar``'s impl block satisfies the ``ConstU64<{K - 1}>`` bound on ``foo``'s impl block
34+
// Test that the ``ConstU64<{ K + 1 - 1}>`` bound on ``bar``'s impl block satisfies the
35+
// ``ConstU64<{K - 1}>`` bound on ``foo``'s impl block

src/test/ui/const-generics/const_evaluatable_checked/nested_uneval_unification-1.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,5 @@ fn main() {
3131
assert_eq!(substs3::<2>().0, [0; 3]);
3232
}
3333

34-
// Test that the ``{ (L - 1) * 2 + 1 }`` bound on ``substs3`` satisfies the ``{ N + 1 }`` bound on ``Substs1``
34+
// Test that the ``{ (L - 1) * 2 + 1 }`` bound on ``substs3`` satisfies the
35+
// ``{ N + 1 }`` bound on ``Substs1``

src/test/ui/const-generics/const_evaluatable_checked/nested_uneval_unification-2.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ fn main() {
2525
assert_eq!(substs3::<2>().0, [0; 2]);
2626
}
2727

28-
// Test that the implicit ``{ (L) }`` bound on ``substs3`` satisfies the ``{ (N) }`` bound on ``Substs1``
28+
// Test that the implicit ``{ (L) }`` bound on ``substs3`` satisfies the
29+
// ``{ (N) }`` bound on ``Substs1``

0 commit comments

Comments
 (0)