|
1 | 1 | error: multiple `deprecated` attributes |
2 | 2 | --> $DIR/stability-attribute-sanity.rs:62:1 |
3 | 3 | | |
4 | | -LL | #[deprecated(since = "b", note = "text")] |
5 | | - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove this attribute |
| 4 | +LL | #[deprecated(since = "5.5.5", note = "text")] |
| 5 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove this attribute |
6 | 6 | | |
7 | 7 | note: attribute also specified here |
8 | 8 | --> $DIR/stability-attribute-sanity.rs:61:1 |
9 | 9 | | |
10 | | -LL | #[deprecated(since = "b", note = "text")] |
11 | | - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 10 | +LL | #[deprecated(since = "5.5.5", note = "text")] |
| 11 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
12 | 12 |
|
13 | 13 | error[E0541]: unknown meta item 'reason' |
14 | 14 | --> $DIR/stability-attribute-sanity.rs:8:46 |
@@ -73,8 +73,8 @@ LL | #[deprecated(note = "a")] |
73 | 73 | error[E0543]: missing 'note' |
74 | 74 | --> $DIR/stability-attribute-sanity.rs:44:5 |
75 | 75 | | |
76 | | -LL | #[deprecated(since = "a")] |
77 | | - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 76 | +LL | #[deprecated(since = "5.5.5")] |
| 77 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
78 | 78 |
|
79 | 79 | error[E0544]: multiple stability levels |
80 | 80 | --> $DIR/stability-attribute-sanity.rs:49:1 |
@@ -118,8 +118,8 @@ LL | fn invalid_deprecation_version() {} |
118 | 118 | error[E0549]: deprecated attribute must be paired with either stable or unstable attribute |
119 | 119 | --> $DIR/stability-attribute-sanity.rs:72:1 |
120 | 120 | | |
121 | | -LL | #[deprecated(since = "a", note = "text")] |
122 | | - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 121 | +LL | #[deprecated(since = "5.5.5", note = "text")] |
| 122 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
123 | 123 |
|
124 | 124 | error[E0711]: feature `a` is declared stable since 1.0.0, but was previously declared stable since 4.4.4 |
125 | 125 | --> $DIR/stability-attribute-sanity.rs:67:1 |
|
0 commit comments