@@ -11,10 +11,10 @@ LL | #[deprecated(since = "b", note = "text")]
11
11
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12
12
13
13
error[E0541]: unknown meta item 'reason'
14
- --> $DIR/stability-attribute-sanity.rs:8:42
14
+ --> $DIR/stability-attribute-sanity.rs:8:46
15
15
|
16
- LL | #[stable(feature = "a", since = "b ", reason)]
17
- | ^^^^^^ expected one of `feature`, `since`
16
+ LL | #[stable(feature = "a", since = "4.4.4 ", reason)]
17
+ | ^^^^^^ expected one of `feature`, `since`
18
18
19
19
error[E0539]: incorrect meta item
20
20
--> $DIR/stability-attribute-sanity.rs:11:29
@@ -25,7 +25,7 @@ LL | #[stable(feature = "a", since)]
25
25
error[E0539]: incorrect meta item
26
26
--> $DIR/stability-attribute-sanity.rs:14:14
27
27
|
28
- LL | #[stable(feature, since = "a ")]
28
+ LL | #[stable(feature, since = "3.3.3 ")]
29
29
| ^^^^^^^
30
30
31
31
error[E0539]: incorrect meta item
@@ -37,7 +37,7 @@ LL | #[stable(feature = "a", since(b))]
37
37
error[E0539]: incorrect meta item
38
38
--> $DIR/stability-attribute-sanity.rs:20:14
39
39
|
40
- LL | #[stable(feature(b), since = "a ")]
40
+ LL | #[stable(feature(b), since = "3.3.3 ")]
41
41
| ^^^^^^^^^^
42
42
43
43
error[E0546]: missing 'feature'
@@ -55,8 +55,8 @@ LL | #[unstable(feature = "b")]
55
55
error[E0546]: missing 'feature'
56
56
--> $DIR/stability-attribute-sanity.rs:31:5
57
57
|
58
- LL | #[stable(since = "a ")]
59
- | ^^^^^^^^^^^^^^^^^^^^^^
58
+ LL | #[stable(since = "3.3.3 ")]
59
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^
60
60
61
61
error[E0542]: missing 'since'
62
62
--> $DIR/stability-attribute-sanity.rs:36:5
@@ -79,8 +79,8 @@ LL | #[deprecated(since = "a")]
79
79
error[E0544]: multiple stability levels
80
80
--> $DIR/stability-attribute-sanity.rs:49:1
81
81
|
82
- LL | #[stable(feature = "a", since = "b ")]
83
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
82
+ LL | #[stable(feature = "a", since = "4.4.4 ")]
83
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
84
84
85
85
error[E0544]: multiple stability levels
86
86
--> $DIR/stability-attribute-sanity.rs:53:1
@@ -91,26 +91,29 @@ LL | #[unstable(feature = "b", issue = "none")]
91
91
error[E0544]: multiple stability levels
92
92
--> $DIR/stability-attribute-sanity.rs:57:1
93
93
|
94
- LL | #[stable(feature = "a", since = "b")]
94
+ LL | #[stable(feature = "a", since = "4.4.4")]
95
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
96
+
97
+ error: 'since' must be a Rust version number, such as "1.31.0"
98
+ --> $DIR/stability-attribute-sanity.rs:60:1
99
+ |
100
+ LL | #[stable(feature = "e", since = "b")]
95
101
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
96
102
97
103
error[E0544]: multiple stability levels
98
- --> $DIR/stability-attribute-sanity.rs:64 :1
104
+ --> $DIR/stability-attribute-sanity.rs:65 :1
99
105
|
100
106
LL | #[rustc_const_unstable(feature = "d", issue = "none")]
101
107
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
102
108
103
- error: invalid stability version found
104
- --> $DIR/stability-attribute-sanity.rs:60 :1
109
+ error[E0549]: deprecated attribute must be paired with either stable or unstable attribute
110
+ --> $DIR/stability-attribute-sanity.rs:62 :1
105
111
|
106
- LL | #[stable(feature = "a", since = "b")]
107
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ invalid stability version
108
- ...
109
- LL | pub const fn multiple4() { }
110
- | ---------------------------- the stability attribute annotates this item
112
+ LL | #[deprecated(since = "b", note = "text")]
113
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
111
114
112
115
error: invalid deprecation version found
113
- --> $DIR/stability-attribute-sanity.rs:67 :1
116
+ --> $DIR/stability-attribute-sanity.rs:68 :1
114
117
|
115
118
LL | #[stable(feature = "a", since = "1.0.0")]
116
119
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ invalid deprecation version
@@ -119,18 +122,24 @@ LL | fn invalid_deprecation_version() {}
119
122
| ----------------------------------- the stability attribute annotates this item
120
123
121
124
error[E0549]: deprecated attribute must be paired with either stable or unstable attribute
122
- --> $DIR/stability-attribute-sanity.rs:72 :1
125
+ --> $DIR/stability-attribute-sanity.rs:73 :1
123
126
|
124
127
LL | #[deprecated(since = "a", note = "text")]
125
128
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
126
129
127
- error[E0711]: feature `a` is declared stable since 1.0.0, but was previously declared stable since b
128
- --> $DIR/stability-attribute-sanity.rs:67:1
130
+ error: function has missing stability attribute
131
+ --> $DIR/stability-attribute-sanity.rs:66:1
132
+ |
133
+ LL | pub const fn multiple4() { }
134
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
135
+
136
+ error[E0711]: feature `a` is declared stable since 1.0.0, but was previously declared stable since 4.4.4
137
+ --> $DIR/stability-attribute-sanity.rs:68:1
129
138
|
130
139
LL | #[stable(feature = "a", since = "1.0.0")]
131
140
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
132
141
133
- error: aborting due to 20 previous errors
142
+ error: aborting due to 22 previous errors
134
143
135
144
Some errors have detailed explanations: E0539, E0541, E0542, E0543, E0544, E0546, E0547, E0549, E0711.
136
145
For more information about an error, try `rustc --explain E0539`.
0 commit comments