We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 849b884 commit 127a4efCopy full SHA for 127a4ef
crates/hir-ty/src/diagnostics/match_check/pat_analysis.rs
@@ -527,6 +527,14 @@ impl PatCx for MatchCheckCtx<'_> {
527
fn complexity_exceeded(&self) -> Result<(), Self::Error> {
528
Err(())
529
}
530
+
531
+ fn report_mixed_deref_pat_ctors(
532
+ &self,
533
+ _deref_pat: &DeconstructedPat<'_>,
534
+ _normal_pat: &DeconstructedPat<'_>,
535
+ ) {
536
+ // FIXME(deref_patterns): This could report an error comparable to the one in rustc.
537
+ }
538
539
540
impl fmt::Debug for MatchCheckCtx<'_> {
0 commit comments