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 #124661 - RalfJung:only-structural-consts-in-patterns, r=<try>
Turn remaining non-structural-const-in-pattern lints into hard errors
This completes the implementation of #120362 by turning out remaining future-compat lints into hard errors: indirect_structural_match and pointer_structural_match.
They have been future-compat lints for a while (indirect_structural_match for many years, pointer_structural_match since Rust 1.75), and have shown up in dependency breakage reports since Rust 1.78 (released yesterday). I don't expect any code will still depend on them, but we will of course do a crater run.
A lot of cleanup is now possible in const_to_pat, but that is deferred to a later PR.
Fixes#70861
<https://rust-lang.github.io/rfcs/3535-constants-in-patterns.html> for more information",
541
541
);
542
+
store.register_removed(
543
+
"indirect_structural_match",
544
+
"converted into hard error, see RFC #3535 \
545
+
<https://rust-lang.github.io/rfcs/3535-constants-in-patterns.html> for more information",
546
+
);
547
+
store.register_removed(
548
+
"pointer_structural_match",
549
+
"converted into hard error, see RFC #3535 \
550
+
<https://rust-lang.github.io/rfcs/3535-constants-in-patterns.html> for more information",
@@ -257,9 +254,6 @@ mir_build_non_exhaustive_patterns_type_not_empty = non-exhaustive patterns: type
257
254
mir_build_non_partial_eq_match =
258
255
to use a constant of type `{$non_peq_ty}` in a pattern, the type must implement `PartialEq`
259
256
260
-
mir_build_nontrivial_structural_match =
261
-
to use a constant of type `{$non_sm_ty}` in a pattern, the constant's initializer must be trivial or `{$non_sm_ty}` must be annotated with `#[derive(PartialEq)]`
262
-
263
257
mir_build_pattern_not_covered = refutable pattern in {$origin}
264
258
.pattern_ty = the matched value is of type `{$pattern_ty}`
0 commit comments