Skip to content

Commit 86be8b4

Browse files
authored
Rollup merge of #97999 - compiler-errors:type_changin_struct_update_is_probably_complete, r=oli-obk
Make `type_changing_struct_update` no longer an incomplete feature After #97705, I don't see what would make it incomplete anymore. `check_expr_struct_fields` seems to now implement the RFC to the letter. r? ````@nikomatsakis```` cc ````@rust-lang/types````
2 parents 33086c8 + 2f923c4 commit 86be8b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_feature/src/active.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ declare_features! (
523523
(active, type_ascription, "1.6.0", Some(23416), None),
524524
/// Allows creation of instances of a struct by moving fields that have
525525
/// not changed from prior instances of the same struct (RFC #2528)
526-
(incomplete, type_changing_struct_update, "1.58.0", Some(86555), None),
526+
(active, type_changing_struct_update, "1.58.0", Some(86555), None),
527527
/// Allows unsized fn parameters.
528528
(active, unsized_fn_params, "1.49.0", Some(48055), None),
529529
/// Allows unsized rvalues at arguments and parameters.

0 commit comments

Comments
 (0)