File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
#![ feature( staged_api) ]
2
- #![ stable( feature = "deprecated-future-staged-api " , since = "1.0.0" ) ]
2
+ #![ stable( feature = "deprecated_future_staged_api " , since = "1.0.0" ) ]
3
3
4
4
// @has deprecated_future_staged_api/index.html '//*[@class="stab deprecated"]' \
5
5
// 'Deprecation planned'
6
6
// @has deprecated_future_staged_api/struct.S1.html '//*[@class="stab deprecated"]' \
7
7
// 'Deprecating in 99.99.99: effectively never'
8
8
#[ deprecated( since = "99.99.99" , note = "effectively never" ) ]
9
- #[ stable( feature = "deprecated-future-staged-api " , since = "1.0.0" ) ]
9
+ #[ stable( feature = "deprecated_future_staged_api " , since = "1.0.0" ) ]
10
10
pub struct S1 ;
11
11
12
12
// @has deprecated_future_staged_api/index.html '//*[@class="stab deprecated"]' \
13
13
// 'Deprecation planned'
14
14
// @has deprecated_future_staged_api/struct.S2.html '//*[@class="stab deprecated"]' \
15
15
// 'Deprecating in a future Rust version: literally never'
16
16
#[ deprecated( since = "TBD" , note = "literally never" ) ]
17
- #[ stable( feature = "deprecated-future-staged-api " , since = "1.0.0" ) ]
17
+ #[ stable( feature = "deprecated_future_staged_api " , since = "1.0.0" ) ]
18
18
pub struct S2 ;
Original file line number Diff line number Diff line change 2
2
3
3
#![ feature( staged_api) ]
4
4
5
- #![ stable( feature = "rustc_deprecation-in-future-test " , since = "1.0.0" ) ]
5
+ #![ stable( feature = "rustc_deprecation_in_future_test " , since = "1.0.0" ) ]
6
6
7
7
#[ deprecated( since = "99.99.99" , note = "effectively never" ) ]
8
- #[ stable( feature = "rustc_deprecation-in-future-test " , since = "1.0.0" ) ]
8
+ #[ stable( feature = "rustc_deprecation_in_future_test " , since = "1.0.0" ) ]
9
9
pub struct S1 ;
10
10
11
11
#[ deprecated( since = "TBD" , note = "literally never" ) ]
12
- #[ stable( feature = "rustc_deprecation-in-future-test " , since = "1.0.0" ) ]
12
+ #[ stable( feature = "rustc_deprecation_in_future_test " , since = "1.0.0" ) ]
13
13
pub struct S2 ;
14
14
15
15
fn main ( ) {
You can’t perform that action at this time.
0 commit comments