about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/tools/rust-analyzer/crates/ide/src/goto_definition.rs16
1 files changed, 0 insertions, 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 aa5c8d00419..1dbab2f3d28 100644
--- a/src/tools/rust-analyzer/crates/ide/src/goto_definition.rs
+++ b/src/tools/rust-analyzer/crates/ide/src/goto_definition.rs
@@ -541,22 +541,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(
             "Range",