From acb89d2be12f6a1556d9a366231604371a62fdcd Mon Sep 17 00:00:00 2001 From: Ekaterina Babshukova Date: Wed, 4 Sep 2019 19:48:45 +0300 Subject: add assist to move type bounds to where clause --- crates/ra_assists/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'crates/ra_assists/src/lib.rs') diff --git a/crates/ra_assists/src/lib.rs b/crates/ra_assists/src/lib.rs index 03eec73ad..10ccc345c 100644 --- a/crates/ra_assists/src/lib.rs +++ b/crates/ra_assists/src/lib.rs @@ -102,6 +102,7 @@ mod remove_dbg; pub mod auto_import; mod add_missing_impl_members; mod move_guard; +mod move_bounds; fn all_assists() -> &'static [fn(AssistCtx) -> Option] { &[ @@ -123,6 +124,7 @@ fn all_assists() -> &'static [fn(AssistCtx) -> Option