You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of #85078 - RalfJung:const_fn_unsize, r=oli-obk
stabilize const_fn_unsize
I will post a stabilization report and ask for FCP in #64992.
This PR is for the implementation side of stabilization.
r? `@oli-obk`
Fixes#64992
= note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
289
289
= help: add `#![feature(const_fn_trait_bound)]` to the crate attributes to enable
290
290
291
-
error[E0658]: unsizing casts to types besides slices are not allowed in const fn
292
-
--> $DIR/min_const_fn.rs:134:63
291
+
error[E0658]: trait bounds other than `Sized` on const fn parameters are unstable
= note: see issue #64992 <https://github.com/rust-lang/rust/issues/64992> for more information
298
-
= help: add `#![feature(const_fn_unsize)]` to the crate attributes to enable
297
+
= note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
298
+
= help: add `#![feature(const_fn_trait_bound)]` to the crate attributes to enable
299
299
300
-
error[E0658]: unsizing casts to types besides slices are not allowed in const fn
301
-
--> $DIR/min_const_fn.rs:134:63
300
+
error[E0658]: trait bounds other than `Sized` on const fn parameters are unstable
= note: see issue #64992 <https://github.com/rust-lang/rust/issues/64992> for more information
307
-
= help: add `#![feature(const_fn_unsize)]` to the crate attributes to enable
306
+
= note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
307
+
= help: add `#![feature(const_fn_trait_bound)]` to the crate attributes to enable
308
308
309
-
error[E0658]: unsizing casts to types besides slices are not allowed in const fn
310
-
--> $DIR/min_const_fn.rs:141:42
309
+
error[E0658]: trait bounds other than `Sized` on const fn parameters are unstable
= note: see issue #64992 <https://github.com/rust-lang/rust/issues/64992> for more information
316
-
= help: add `#![feature(const_fn_unsize)]` to the crate attributes to enable
315
+
= note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
316
+
= help: add `#![feature(const_fn_trait_bound)]` to the crate attributes to enable
317
317
318
318
error[E0658]: function pointers cannot appear in constant functions
Copy file name to clipboardexpand all lines: src/test/ui/consts/min_const_fn/min_const_fn_dyn.stderr
+3-3
Original file line number
Diff line number
Diff line change
@@ -7,14 +7,14 @@ LL | x.0.field;
7
7
= note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
8
8
= help: add `#![feature(const_fn_trait_bound)]` to the crate attributes to enable
9
9
10
-
error[E0658]: unsizing casts to types besides slices are not allowed in const fn
10
+
error[E0658]: trait bounds other than `Sized` on const fn parameters are unstable
= note: see issue #64992 <https://github.com/rust-lang/rust/issues/64992> for more information
17
-
= help: add `#![feature(const_fn_unsize)]` to the crate attributes to enable
16
+
= note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
17
+
= help: add `#![feature(const_fn_trait_bound)]` to the crate attributes to enable
0 commit comments