about summary refs log tree commit diff
path: root/src/tools
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-01-13 05:27:01 +0100
committerGitHub <noreply@github.com>2019-01-13 05:27:01 +0100
commit3e2dcf95ce0c19d8ea77e565322ba6885196efda (patch)
tree5049b476b6160866955ae4a859a6f92e9f0bb52f /src/tools
parent33c5874966d4f0776f7af6e9dcb253edb985974e (diff)
parent1e4a8a01c4e89e1485e56ba482e592a9d337d2ef (diff)
downloadrust-3e2dcf95ce0c19d8ea77e565322ba6885196efda.tar.gz
rust-3e2dcf95ce0c19d8ea77e565322ba6885196efda.zip
Rollup merge of #57564 - varkor:update-const_fn-tracking-issue, r=Centril
Update the const fn tracking issue to the new metabug

The new `const fn` tracking issue is #57563. We don't want to point to a closed issue in the diagnostics (or FIXMEs), so these have been updated (from the old issue, #24111).

r? @Centril
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/tidy/src/features.rs11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/tools/tidy/src/features.rs b/src/tools/tidy/src/features.rs
index 049a0ee49f0..2435a0cfd4e 100644
--- a/src/tools/tidy/src/features.rs
+++ b/src/tools/tidy/src/features.rs
@@ -336,12 +336,11 @@ fn map_lib_features(base_src_path: &Path,
                     level: Status::Unstable,
                     since: "None".to_owned(),
                     has_gate_test: false,
-                    // Whether there is a common tracking issue
-                    // for these feature gates remains an open question
-                    // https://github.com/rust-lang/rust/issues/24111#issuecomment-340283184
-                    // But we take 24111 otherwise they will be shown as
-                    // "internal to the compiler" which they are not.
-                    tracking_issue: Some(24111),
+                    // FIXME(#57563): #57563 is now used as a common tracking issue,
+                    // although we would like to have specific tracking
+                    // issues for each `rustc_const_unstable` in the
+                    // future.
+                    tracking_issue: Some(57563),
                 };
                 mf(Ok((feature_name, feature)), file, i + 1);
                 continue;