Skip to content

Commit a41613b

Browse files
committed
Fix spurious change
1 parent c2afab4 commit a41613b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler/rustc_passes/src/errors.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1790,7 +1790,7 @@ pub(crate) struct UnnecessaryPartialStableFeature {
17901790
#[derive(LintDiagnostic)]
17911791
#[diag(passes_ineffective_unstable_impl)]
17921792
#[note]
1793-
pub(crate) struct IneffectiveUnstableFeature;
1793+
pub(crate) struct IneffectiveUnstableImpl;
17941794

17951795
#[derive(LintDiagnostic)]
17961796
#[diag(passes_unused_assign)]

compiler/rustc_passes/src/stability.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ impl<'tcx> Visitor<'tcx> for Checker<'tcx> {
821821
INEFFECTIVE_UNSTABLE_TRAIT_IMPL,
822822
item.hir_id(),
823823
span,
824-
errors::IneffectiveUnstableFeature,
824+
errors::IneffectiveUnstableImpl,
825825
);
826826
}
827827
}

0 commit comments

Comments
 (0)