Skip to content

Commit a71009d

Browse files
committed
Fix spurious change
1 parent cfe2087 commit a71009d

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
@@ -1783,7 +1783,7 @@ pub(crate) struct UnnecessaryPartialStableFeature {
17831783
#[derive(LintDiagnostic)]
17841784
#[diag(passes_ineffective_unstable_impl)]
17851785
#[note]
1786-
pub(crate) struct IneffectiveUnstableFeature;
1786+
pub(crate) struct IneffectiveUnstableImpl;
17871787

17881788
#[derive(LintDiagnostic)]
17891789
#[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)