diff options
author | Vladyslav Katasonov <[email protected]> | 2021-02-03 14:46:57 +0000 |
---|---|---|
committer | Vladyslav Katasonov <[email protected]> | 2021-02-03 14:46:57 +0000 |
commit | f0d2bb9131fab4898221d30caf0b5a12800ba4e8 (patch) | |
tree | 8266e3c49ea06175bbe0c57448fcd97cda260e4f | |
parent | 88b3034636a4f4c652e49de09a791a934573aaee (diff) |
disable test for downgrading mutability on extract
-rw-r--r-- | crates/assists/src/handlers/extract_function.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/assists/src/handlers/extract_function.rs b/crates/assists/src/handlers/extract_function.rs index 218529fcf..66c5cdb8f 100644 --- a/crates/assists/src/handlers/extract_function.rs +++ b/crates/assists/src/handlers/extract_function.rs | |||
@@ -944,6 +944,9 @@ impl S { | |||
944 | ); | 944 | ); |
945 | } | 945 | } |
946 | 946 | ||
947 | // it is unclear if this is wanted behaviour | ||
948 | // and how this behavour can be implemented | ||
949 | #[ignore] | ||
947 | #[test] | 950 | #[test] |
948 | fn method_with_mut_downgrade_to_shared() { | 951 | fn method_with_mut_downgrade_to_shared() { |
949 | check_assist( | 952 | check_assist( |