From b181cac478806928cb720d9e13a02759592b3d70 Mon Sep 17 00:00:00 2001 From: Duncan Proctor Date: Tue, 22 Oct 2024 06:25:13 -0400 Subject: [PATCH] remove duplicate test --- .../crates/ide/src/goto_definition.rs | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/tools/rust-analyzer/crates/ide/src/goto_definition.rs b/src/tools/rust-analyzer/crates/ide/src/goto_definition.rs index aa5c8d0041990..1dbab2f3d2866 100644 --- a/src/tools/rust-analyzer/crates/ide/src/goto_definition.rs +++ b/src/tools/rust-analyzer/crates/ide/src/goto_definition.rs @@ -540,22 +540,6 @@ fn f(ch: char) -> bool { ); } - #[test] - fn goto_def_range_pat_inclusive() { - check_name( - "RangeInclusive", - r#" -//- minicore: range -fn f(ch: char) -> bool { - match ch { - 'a'..$0='z' => true, - _ => false - } -} -"# - ); - } - #[test] fn goto_def_expr_range() { check_name(