We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83460d5 commit 08fbe3dCopy full SHA for 08fbe3d
compiler/rustc_attr/src/builtin.rs
@@ -750,8 +750,7 @@ where
750
if sess.is_nightly_build() {
751
diag.help("add `#![feature(deprecated_suggestion)]` to the crate root");
752
}
753
- // FIXME(jhpratt) change this to an actual tracking issue
754
- diag.note("see #XXX for more details").emit();
+ diag.note("see #94785 for more details").emit();
755
756
757
if !get(mi, &mut suggestion) {
src/test/ui/deprecation/feature-gate-deprecated_suggestion.stderr
@@ -5,7 +5,7 @@ LL | #[deprecated(suggestion = "foo")]
5
| ^^^^^^^^^^^^^^^^^^
6
|
7
= help: add `#![feature(deprecated_suggestion)]` to the crate root
8
- = note: see #XXX for more details
+ = note: see #94785 for more details
9
10
error: aborting due to previous error
11
0 commit comments