Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-assists/src/tests/generated.rs')
-rw-r--r--crates/ide-assists/src/tests/generated.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/crates/ide-assists/src/tests/generated.rs b/crates/ide-assists/src/tests/generated.rs
index 7eef257b95..581efd0bac 100644
--- a/crates/ide-assists/src/tests/generated.rs
+++ b/crates/ide-assists/src/tests/generated.rs
@@ -70,6 +70,27 @@ enum TheEnum {
}
#[test]
+fn doctest_add_explicit_method_call_deref() {
+ check_doc_test(
+ "add_explicit_method_call_deref",
+ r#####"
+struct Foo;
+impl Foo { fn foo(&self) {} }
+fn test() {
+ Foo$0.$0foo();
+}
+"#####,
+ r#####"
+struct Foo;
+impl Foo { fn foo(&self) {} }
+fn test() {
+ (&Foo).foo();
+}
+"#####,
+ )
+}
+
+#[test]
fn doctest_add_explicit_type() {
check_doc_test(
"add_explicit_type",