Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide_diagnostics/src/handlers/missing_match_arms.rs')
| -rw-r--r-- | crates/ide_diagnostics/src/handlers/missing_match_arms.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ide_diagnostics/src/handlers/missing_match_arms.rs b/crates/ide_diagnostics/src/handlers/missing_match_arms.rs index 6bdcd41a79..fe6a8683c1 100644 --- a/crates/ide_diagnostics/src/handlers/missing_match_arms.rs +++ b/crates/ide_diagnostics/src/handlers/missing_match_arms.rs @@ -278,6 +278,7 @@ fn main() { match (true, false) { (true, false, true) => (), (true) => (), + // ^^^^ error: expected (bool, bool), found bool } match (true, false) { (true,) => {} } match (0) { () => () } |