We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9536567 commit ef813caCopy full SHA for ef813ca
src/librustc_error_codes/error_codes/E0539.md
@@ -4,6 +4,7 @@ Erroneous code example:
4
5
```compile_fail,E0539
6
#![feature(staged_api)]
7
+#![stable(since = "1.0.0", feature = "test")]
8
9
#[rustc_deprecated(reason)] // error!
10
#[unstable(feature = "deprecated_fn", issue = "123")]
@@ -27,6 +28,7 @@ To fix these issues you need to give required key-value pairs.
27
28
29
```
30
31
32
33
#[rustc_deprecated(since = "1.39.0", reason = "reason")] // ok!
34
0 commit comments