Improve ineffective_unstable_trait_impl
error message.
This commit is contained in:
parent
1c1bfba84a
commit
14cc17759d
@ -561,10 +561,10 @@ fn visit_item(&mut self, item: &'tcx hir::Item<'tcx>) {
|
||||
INEFFECTIVE_UNSTABLE_TRAIT_IMPL,
|
||||
item.hir_id,
|
||||
span,
|
||||
|lint| lint.build(
|
||||
"An `#[unstable]` annotation here has no effect. \
|
||||
See issue #55436 <https://github.com/rust-lang/rust/issues/55436> for more information.",
|
||||
).emit()
|
||||
|lint| lint
|
||||
.build("an `#[unstable]` annotation here has no effect")
|
||||
.note("see issue #55436 <https://github.com/rust-lang/rust/issues/55436> for more information")
|
||||
.emit()
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -22,7 +22,7 @@ impl StableTrait for UnstableType {}
|
||||
impl UnstableTrait for StableType {}
|
||||
|
||||
#[unstable(feature = "x", issue = "none")]
|
||||
//~^ ERROR An `#[unstable]` annotation here has no effect.
|
||||
//~^ ERROR an `#[unstable]` annotation here has no effect [rustc::ineffective_unstable_trait_impl]
|
||||
impl StableTrait for StableType {}
|
||||
|
||||
fn main() {}
|
||||
|
@ -1,10 +1,11 @@
|
||||
error: An `#[unstable]` annotation here has no effect. See issue #55436 <https://github.com/rust-lang/rust/issues/55436> for more information.
|
||||
error: an `#[unstable]` annotation here has no effect
|
||||
--> $DIR/stability-attribute-trait-impl.rs:24:1
|
||||
|
|
||||
LL | #[unstable(feature = "x", issue = "none")]
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
|
||||
= note: `#[deny(rustc::ineffective_unstable_trait_impl)]` on by default
|
||||
= note: see issue #55436 <https://github.com/rust-lang/rust/issues/55436> for more information
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user