Skip to content

Commit a7e9e3e

Browse files
committed
fix conflicts
1 parent 3802613 commit a7e9e3e

File tree

3 files changed

+179
-173
lines changed

3 files changed

+179
-173
lines changed

compiler/rustc_parse/src/errors.rs

+8-2
Original file line numberDiff line numberDiff line change
@@ -1528,7 +1528,10 @@ pub(crate) struct ParenthesesInMatchPat {
15281528
}
15291529

15301530
#[derive(Subdiagnostic)]
1531-
#[multipart_suggestion(label = "remove parentheses surrounding the pattern", applicability = "machine-applicable")]
1531+
#[multipart_suggestion(
1532+
label = "remove parentheses surrounding the pattern",
1533+
applicability = "machine-applicable"
1534+
)]
15321535
pub(crate) struct ParenthesesInMatchPatSugg {
15331536
#[suggestion_part(code = "")]
15341537
pub left: Span,
@@ -3472,7 +3475,10 @@ pub(crate) struct TransposeDynOrImpl<'a> {
34723475
}
34733476

34743477
#[derive(Subdiagnostic)]
3475-
#[multipart_suggestion(label = "move `{$kw}` before the `for<...>`", applicability = "machine-applicable")]
3478+
#[multipart_suggestion(
3479+
label = "move `{$kw}` before the `for<...>`",
3480+
applicability = "machine-applicable"
3481+
)]
34763482
pub(crate) struct TransposeDynOrImplSugg<'a> {
34773483
#[suggestion_part(code = "")]
34783484
pub removal_span: Span,

0 commit comments

Comments
 (0)