We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2afab4 commit a41613bCopy full SHA for a41613b
compiler/rustc_passes/src/errors.rs
@@ -1790,7 +1790,7 @@ pub(crate) struct UnnecessaryPartialStableFeature {
1790
#[derive(LintDiagnostic)]
1791
#[diag(passes_ineffective_unstable_impl)]
1792
#[note]
1793
-pub(crate) struct IneffectiveUnstableFeature;
+pub(crate) struct IneffectiveUnstableImpl;
1794
1795
1796
#[diag(passes_unused_assign)]
compiler/rustc_passes/src/stability.rs
@@ -821,7 +821,7 @@ impl<'tcx> Visitor<'tcx> for Checker<'tcx> {
821
INEFFECTIVE_UNSTABLE_TRAIT_IMPL,
822
item.hir_id(),
823
span,
824
- errors::IneffectiveUnstableFeature,
+ errors::IneffectiveUnstableImpl,
825
);
826
}
827
0 commit comments