Skip to content

Commit 1e4a8a0

Browse files
committed
Update the const fn tracking issue to the new metabug
1 parent 75a369c commit 1e4a8a0

File tree

7 files changed

+14
-15
lines changed

7 files changed

+14
-15
lines changed

src/doc/unstable-book/src/language-features/const-fn.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# `const_fn`
22

3-
The tracking issue for this feature is: [#24111]
3+
The tracking issue for this feature is: [#57563]
44

5-
[#24111]: https://github.com/rust-lang/rust/issues/24111
5+
[#57563]: https://github.com/rust-lang/rust/issues/57563
66

77
------------------------
88

src/librustc_mir/diagnostics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ const Y: i32 = A;
573573
```
574574
"##,
575575

576-
// FIXME(#24111) Change the language here when const fn stabilizes
576+
// FIXME(#57563) Change the language here when const fn stabilizes
577577
E0015: r##"
578578
The only functions that can be called in static or constant expressions are
579579
`const` functions, and struct/enum constructors. `const` functions are only

src/librustc_mir/transform/qualify_consts.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ impl<'a, 'tcx> Visitor<'tcx> for Qualifier<'a, 'tcx, 'tcx> {
901901
err.emit();
902902
}
903903
} else {
904-
// FIXME(#24111): remove this check when const fn stabilizes.
904+
// FIXME(#57563): remove this check when const fn stabilizes.
905905
let (msg, note) = if let UnstableFeatures::Disallow =
906906
self.tcx.sess.opts.unstable_features {
907907
(format!("calls in {}s are limited to \

src/libsyntax/feature_gate.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ declare_features! (
191191
(active, slice_patterns, "1.0.0", Some(23121), None),
192192

193193
// Allows the definition of `const` functions with some advanced features.
194-
(active, const_fn, "1.2.0", Some(24111), None),
194+
(active, const_fn, "1.2.0", Some(57563), None),
195195

196196
// Allows accessing fields of unions inside `const` functions.
197197
(active, const_fn_union, "1.27.0", Some(51909), None),

src/test/ui/feature-gates/feature-gate-const_fn.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ error[E0379]: trait fns cannot be declared const
1616
LL | const fn foo() -> u32 { 0 } //~ ERROR trait fns cannot be declared const
1717
| ^^^^^ trait fns cannot be const
1818

19-
error[E0658]: const fn is unstable (see issue #24111)
19+
error[E0658]: const fn is unstable (see issue #57563)
2020
--> $DIR/feature-gate-const_fn.rs:6:5
2121
|
2222
LL | const fn foo() -> u32; //~ ERROR const fn is unstable
2323
| ^^^^^^^^^^^^^^^^^^^^^^
2424
|
2525
= help: add #![feature(const_fn)] to the crate attributes to enable
2626

27-
error[E0658]: const fn is unstable (see issue #24111)
27+
error[E0658]: const fn is unstable (see issue #57563)
2828
--> $DIR/feature-gate-const_fn.rs:8:5
2929
|
3030
LL | const fn bar() -> u32 { 0 } //~ ERROR const fn is unstable

src/test/ui/feature-gates/feature-gate-min_const_fn.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ error[E0379]: trait fns cannot be declared const
1616
LL | const fn foo() -> u32 { 0 } //~ ERROR trait fns cannot be declared const
1717
| ^^^^^ trait fns cannot be const
1818

19-
error[E0658]: const fn is unstable (see issue #24111)
19+
error[E0658]: const fn is unstable (see issue #57563)
2020
--> $DIR/feature-gate-min_const_fn.rs:6:5
2121
|
2222
LL | const fn foo() -> u32; //~ ERROR const fn is unstable
2323
| ^^^^^^^^^^^^^^^^^^^^^^
2424
|
2525
= help: add #![feature(const_fn)] to the crate attributes to enable
2626

27-
error[E0658]: const fn is unstable (see issue #24111)
27+
error[E0658]: const fn is unstable (see issue #57563)
2828
--> $DIR/feature-gate-min_const_fn.rs:8:5
2929
|
3030
LL | const fn bar() -> u32 { 0 } //~ ERROR const fn is unstable

src/tools/tidy/src/features.rs

+5-6
Original file line numberDiff line numberDiff line change
@@ -336,12 +336,11 @@ fn map_lib_features(base_src_path: &Path,
336336
level: Status::Unstable,
337337
since: "None".to_owned(),
338338
has_gate_test: false,
339-
// Whether there is a common tracking issue
340-
// for these feature gates remains an open question
341-
// https://github.com/rust-lang/rust/issues/24111#issuecomment-340283184
342-
// But we take 24111 otherwise they will be shown as
343-
// "internal to the compiler" which they are not.
344-
tracking_issue: Some(24111),
339+
// FIXME(#57563): #57563 is now used as a common tracking issue,
340+
// although we would like to have specific tracking
341+
// issues for each `rustc_const_unstable` in the
342+
// future.
343+
tracking_issue: Some(57563),
345344
};
346345
mf(Ok((feature_name, feature)), file, i + 1);
347346
continue;

0 commit comments

Comments
 (0)