Skip to content

Commit 0a7adaf

Browse files
authored
Rollup merge of #126830 - RalfJung:unsized-fn-params, r=compiler-errors
make unsized_fn_params an internal feature As suggested [here](#123894 (comment)). r? `@compiler-errors` Fixes #123887 (kind of -- ICEs on internal features are considered acceptable so this issue is not-a-bug once this PR lands)
2 parents 6736641 + 0937996 commit 0a7adaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_feature/src/unstable.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ declare_features! (
629629
/// Allows unsafe on extern declarations and safety qualifiers over internal items.
630630
(unstable, unsafe_extern_blocks, "1.80.0", Some(123743)),
631631
/// Allows unsized fn parameters.
632-
(unstable, unsized_fn_params, "1.49.0", Some(48055)),
632+
(internal, unsized_fn_params, "1.49.0", Some(48055)),
633633
/// Allows unsized rvalues at arguments and parameters.
634634
(incomplete, unsized_locals, "1.30.0", Some(48055)),
635635
/// Allows unsized tuple coercion.

0 commit comments

Comments
 (0)