@@ -20,16 +20,16 @@ pub fn deprecated() {}
20
20
#[ deprecated( since = "1.0.0" , reason = "text" ) ]
21
21
pub fn deprecated_text ( ) { }
22
22
23
- #[ unstable( feature = "test_feature" ) ]
23
+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
24
24
#[ deprecated( since = "1.0.0" ) ]
25
25
pub fn deprecated_unstable ( ) { }
26
- #[ unstable( feature = "test_feature" ) ]
26
+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
27
27
#[ deprecated( since = "1.0.0" , reason = "text" ) ]
28
28
pub fn deprecated_unstable_text ( ) { }
29
29
30
- #[ unstable( feature = "test_feature" ) ]
30
+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
31
31
pub fn unstable ( ) { }
32
- #[ unstable( feature = "test_feature" , reason = "text" ) ]
32
+ #[ unstable( feature = "test_feature" , reason = "text" , issue = "0" ) ]
33
33
pub fn unstable_text ( ) { }
34
34
35
35
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -48,16 +48,16 @@ impl MethodTester {
48
48
#[ deprecated( since = "1.0.0" , reason = "text" ) ]
49
49
pub fn method_deprecated_text ( & self ) { }
50
50
51
- #[ unstable( feature = "test_feature" ) ]
51
+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
52
52
#[ deprecated( since = "1.0.0" ) ]
53
53
pub fn method_deprecated_unstable ( & self ) { }
54
- #[ unstable( feature = "test_feature" ) ]
54
+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
55
55
#[ deprecated( since = "1.0.0" , reason = "text" ) ]
56
56
pub fn method_deprecated_unstable_text ( & self ) { }
57
57
58
- #[ unstable( feature = "test_feature" ) ]
58
+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
59
59
pub fn method_unstable ( & self ) { }
60
- #[ unstable( feature = "test_feature" , reason = "text" ) ]
60
+ #[ unstable( feature = "test_feature" , reason = "text" , issue = "0" ) ]
61
61
pub fn method_unstable_text ( & self ) { }
62
62
63
63
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -75,16 +75,16 @@ pub trait Trait {
75
75
#[ deprecated( since = "1.0.0" , reason = "text" ) ]
76
76
fn trait_deprecated_text ( & self ) { }
77
77
78
- #[ unstable( feature = "test_feature" ) ]
78
+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
79
79
#[ deprecated( since = "1.0.0" ) ]
80
80
fn trait_deprecated_unstable ( & self ) { }
81
- #[ unstable( feature = "test_feature" ) ]
81
+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
82
82
#[ deprecated( since = "1.0.0" , reason = "text" ) ]
83
83
fn trait_deprecated_unstable_text ( & self ) { }
84
84
85
- #[ unstable( feature = "test_feature" ) ]
85
+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
86
86
fn trait_unstable ( & self ) { }
87
- #[ unstable( feature = "test_feature" , reason = "text" ) ]
87
+ #[ unstable( feature = "test_feature" , reason = "text" , issue = "0" ) ]
88
88
fn trait_unstable_text ( & self ) { }
89
89
90
90
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -95,20 +95,20 @@ pub trait Trait {
95
95
96
96
impl Trait for MethodTester { }
97
97
98
- #[ unstable( feature = "test_feature" ) ]
98
+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
99
99
pub trait UnstableTrait { fn dummy ( & self ) { } }
100
100
101
101
#[ stable( feature = "test_feature" , since = "1.0.0" ) ]
102
102
#[ deprecated( since = "1.0.0" ) ]
103
103
pub struct DeprecatedStruct {
104
104
#[ stable( feature = "test_feature" , since = "1.0.0" ) ] pub i : isize
105
105
}
106
- #[ unstable( feature = "test_feature" ) ]
106
+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
107
107
#[ deprecated( since = "1.0.0" ) ]
108
108
pub struct DeprecatedUnstableStruct {
109
109
#[ stable( feature = "test_feature" , since = "1.0.0" ) ] pub i : isize
110
110
}
111
- #[ unstable( feature = "test_feature" ) ]
111
+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
112
112
pub struct UnstableStruct {
113
113
#[ stable( feature = "test_feature" , since = "1.0.0" ) ] pub i : isize
114
114
}
@@ -120,10 +120,10 @@ pub struct StableStruct {
120
120
#[ stable( feature = "test_feature" , since = "1.0.0" ) ]
121
121
#[ deprecated( since = "1.0.0" ) ]
122
122
pub struct DeprecatedUnitStruct ;
123
- #[ unstable( feature = "test_feature" ) ]
123
+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
124
124
#[ deprecated( since = "1.0.0" ) ]
125
125
pub struct DeprecatedUnstableUnitStruct ;
126
- #[ unstable( feature = "test_feature" ) ]
126
+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
127
127
pub struct UnstableUnitStruct ;
128
128
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
129
129
pub struct StableUnitStruct ;
@@ -133,10 +133,10 @@ pub enum Enum {
133
133
#[ stable( feature = "test_feature" , since = "1.0.0" ) ]
134
134
#[ deprecated( since = "1.0.0" ) ]
135
135
DeprecatedVariant ,
136
- #[ unstable( feature = "test_feature" ) ]
136
+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
137
137
#[ deprecated( since = "1.0.0" ) ]
138
138
DeprecatedUnstableVariant ,
139
- #[ unstable( feature = "test_feature" ) ]
139
+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
140
140
UnstableVariant ,
141
141
142
142
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -146,10 +146,10 @@ pub enum Enum {
146
146
#[ stable( feature = "test_feature" , since = "1.0.0" ) ]
147
147
#[ deprecated( since = "1.0.0" ) ]
148
148
pub struct DeprecatedTupleStruct ( #[ stable( feature = "rust1" , since = "1.0.0" ) ] pub isize ) ;
149
- #[ unstable( feature = "test_feature" ) ]
149
+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
150
150
#[ deprecated( since = "1.0.0" ) ]
151
151
pub struct DeprecatedUnstableTupleStruct ( #[ stable( feature = "rust1" , since = "1.0.0" ) ] pub isize ) ;
152
- #[ unstable( feature = "test_feature" ) ]
152
+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
153
153
pub struct UnstableTupleStruct ( #[ stable( feature = "rust1" , since = "1.0.0" ) ] pub isize ) ;
154
154
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
155
155
pub struct StableTupleStruct ( #[ stable( feature = "rust1" , since = "1.0.0" ) ] pub isize ) ;
0 commit comments