diff options
Diffstat (limited to 'crates/ide_completion/src/context.rs')
-rw-r--r-- | crates/ide_completion/src/context.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/crates/ide_completion/src/context.rs b/crates/ide_completion/src/context.rs index 89e9bda78..e6cc6329c 100644 --- a/crates/ide_completion/src/context.rs +++ b/crates/ide_completion/src/context.rs | |||
@@ -350,7 +350,6 @@ impl<'a> CompletionContext<'a> { | |||
350 | }, | 350 | }, |
351 | ast::IdentPat(it) => { | 351 | ast::IdentPat(it) => { |
352 | cov_mark::hit!(expected_type_if_let_with_leading_char); | 352 | cov_mark::hit!(expected_type_if_let_with_leading_char); |
353 | cov_mark::hit!(expected_type_if_let_without_leading_char); | ||
354 | cov_mark::hit!(expected_type_match_arm_with_leading_char); | 353 | cov_mark::hit!(expected_type_match_arm_with_leading_char); |
355 | let ty = self.sema.type_of_pat(&ast::Pat::from(it)); | 354 | let ty = self.sema.type_of_pat(&ast::Pat::from(it)); |
356 | 355 | ||
@@ -748,7 +747,6 @@ fn foo() { | |||
748 | 747 | ||
749 | #[test] | 748 | #[test] |
750 | fn expected_type_if_let_without_leading_char() { | 749 | fn expected_type_if_let_without_leading_char() { |
751 | cov_mark::check!(expected_type_if_let_without_leading_char); | ||
752 | check_expected_type_and_name( | 750 | check_expected_type_and_name( |
753 | r#" | 751 | r#" |
754 | enum Foo { Bar, Baz, Quux } | 752 | enum Foo { Bar, Baz, Quux } |