Perform match checking on THIR.
This commit is contained in:
parent
3b47cdc439
commit
05082f57af
81 changed files with 668 additions and 997 deletions
|
@ -17,8 +17,8 @@ LL | let (1, (Some(1), 2..=3)) = (1, (None, 2));
|
|||
= note: the matched value is of type `(i32, (Option<i32>, i32))`
|
||||
help: you might want to use `if let` to ignore the variants that aren't matched
|
||||
|
|
||||
LL | if let (1, (Some(1), 2..=3)) = (1, (None, 2)) { todo!() }
|
||||
| ++ ~~~~~~~~~~~
|
||||
LL | if let (1, (Some(1), 2..=3)) = (1, (None, 2)) { todo!() };
|
||||
| ++ +++++++++++
|
||||
|
||||
error: aborting due to 2 previous errors
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue