File tree 4 files changed +30
-7
lines changed
compiler/rustc_lint_defs/src
src/test/ui/stability-attribute
4 files changed +30
-7
lines changed Original file line number Diff line number Diff line change 4
4
//! compiler code, rather than using their own custom pass. Those
5
5
//! lints are all available in `rustc_lint::builtin`.
6
6
7
- use crate :: { declare_lint, declare_lint_pass, declare_tool_lint } ;
7
+ use crate :: { declare_lint, declare_lint_pass} ;
8
8
use rustc_span:: edition:: Edition ;
9
9
use rustc_span:: symbol:: sym;
10
10
@@ -2825,8 +2825,29 @@ declare_lint! {
2825
2825
} ;
2826
2826
}
2827
2827
2828
- declare_tool_lint ! {
2829
- pub rustc:: INEFFECTIVE_UNSTABLE_TRAIT_IMPL ,
2828
+ declare_lint ! {
2829
+ /// The `ineffective_unstable_trait_impl` lint detects `#[unstable]` attributes which are not used.
2830
+ ///
2831
+ /// ### Example
2832
+ ///
2833
+ /// ```compile_fail
2834
+ /// #![feature(staged_api)]
2835
+ ///
2836
+ /// #[derive(Clone)]
2837
+ /// #[stable(feature = "x", since = "1")]
2838
+ /// struct S {}
2839
+ ///
2840
+ /// #[unstable(feature = "y", issue = "none")]
2841
+ /// impl Copy for S {}
2842
+ /// ```
2843
+ ///
2844
+ /// {{produces}}
2845
+ ///
2846
+ /// ### Explanation
2847
+ ///
2848
+ /// `staged_api` does not currently support using a stability attribute on `impl` blocks.
2849
+ /// `impl`s are always stable if both the type and trait are stable, and always unstable otherwise.
2850
+ pub INEFFECTIVE_UNSTABLE_TRAIT_IMPL ,
2830
2851
Deny ,
2831
2852
"detects `#[unstable]` on stable trait implementations for stable types"
2832
2853
}
Original file line number Diff line number Diff line change @@ -33,7 +33,8 @@ pub trait Wake {
33
33
}
34
34
}
35
35
36
- #[ allow( rustc:: ineffective_unstable_trait_impl) ]
36
+ #[ cfg_attr( bootstrap, allow( rustc:: ineffective_unstable_trait_impl) ) ]
37
+ #[ cfg_attr( not( bootstrap) , allow( ineffective_unstable_trait_impl) ) ]
37
38
#[ unstable( feature = "wake_trait" , issue = "69912" ) ]
38
39
impl < W : Wake + Send + Sync + ' static > From < Arc < W > > for Waker {
39
40
fn from ( waker : Arc < W > ) -> Waker {
@@ -43,7 +44,8 @@ impl<W: Wake + Send + Sync + 'static> From<Arc<W>> for Waker {
43
44
}
44
45
}
45
46
46
- #[ allow( rustc:: ineffective_unstable_trait_impl) ]
47
+ #[ cfg_attr( bootstrap, allow( rustc:: ineffective_unstable_trait_impl) ) ]
48
+ #[ cfg_attr( not( bootstrap) , allow( ineffective_unstable_trait_impl) ) ]
47
49
#[ unstable( feature = "wake_trait" , issue = "69912" ) ]
48
50
impl < W : Wake + Send + Sync + ' static > From < Arc < W > > for RawWaker {
49
51
fn from ( waker : Arc < W > ) -> RawWaker {
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ impl StableTrait for UnstableType {}
22
22
impl UnstableTrait for StableType { }
23
23
24
24
#[ unstable( feature = "x" , issue = "none" ) ]
25
- //~^ ERROR an `#[unstable]` annotation here has no effect [rustc:: ineffective_unstable_trait_impl]
25
+ //~^ ERROR an `#[unstable]` annotation here has no effect [ineffective_unstable_trait_impl]
26
26
impl StableTrait for StableType { }
27
27
28
28
fn main ( ) { }
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ error: an `#[unstable]` annotation here has no effect
4
4
LL | #[unstable(feature = "x", issue = "none")]
5
5
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6
6
|
7
- = note: `#[deny(rustc:: ineffective_unstable_trait_impl)]` on by default
7
+ = note: `#[deny(ineffective_unstable_trait_impl)]` on by default
8
8
= note: see issue #55436 <https://github.com/rust-lang/rust/issues/55436> for more information
9
9
10
10
error: aborting due to previous error
You can’t perform that action at this time.
0 commit comments