File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
compiler/rustc_error_codes/src/error_codes Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,16 @@ To fix the issue you need to provide the `feature` field.
1919#![feature(staged_api)]
2020#![stable(since = "1.0.0", feature = "test")]
2121
22- #[unstable(feature = "unstable_fn", issue = "none")]
22+ #[unstable(feature = "unstable_fn", issue = "none")] // ok!!
2323fn unstable_fn() {}
2424
25- #[stable(feature = "stable_fn", since = "1.0.0")]
25+ #[stable(feature = "stable_fn", since = "1.0.0")] // ok!!
2626fn stable_fn() {}
2727```
28+
29+ See the [ How Rust is Made and “Nightly Rust”] [ how-rust-made-nightly ] appendix
30+ of the Book and the [ Stability attributes] [ stability-attributes ] section of the
31+ Rustc Dev Guide for more details.
32+
33+ [ how-rust-made-nightly ] : https://doc.rust-lang.org/book/appendix-07-nightly-rust.html
34+ [ stability-attributes ] : https://rustc-dev-guide.rust-lang.org/stability.html
You can’t perform that action at this time.
0 commit comments