aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/marks.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-03-04 13:25:22 +0000
committerAleksey Kladov <[email protected]>2020-03-04 13:25:22 +0000
commitf57682c0b3b17a09d728c77134200b4151b2358d (patch)
tree4f14fda3b2ef64d7fe945a493f4f64c1696ef2cc /crates/ra_assists/src/marks.rs
parent94189d0a1c8cf24b155fe7bad9b159bc17e997bb (diff)
Remove old find refs infra
Diffstat (limited to 'crates/ra_assists/src/marks.rs')
-rw-r--r--crates/ra_assists/src/marks.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/crates/ra_assists/src/marks.rs b/crates/ra_assists/src/marks.rs
index cef3df4e5..22404ee80 100644
--- a/crates/ra_assists/src/marks.rs
+++ b/crates/ra_assists/src/marks.rs
@@ -1,9 +1,10 @@
1//! See test_utils/src/marks.rs 1//! See test_utils/src/marks.rs
2 2
3test_utils::marks!( 3test_utils::marks![
4 introduce_var_in_comment_is_not_applicable 4 introduce_var_in_comment_is_not_applicable
5 test_introduce_var_expr_stmt 5 test_introduce_var_expr_stmt
6 test_introduce_var_last_expr 6 test_introduce_var_last_expr
7 not_applicable_outside_of_bind_pat 7 not_applicable_outside_of_bind_pat
8 test_not_inline_mut_variable 8 test_not_inline_mut_variable
9); 9 test_not_applicable_if_variable_unused
10];