aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crates/ide_completion/src/completions/dot.rs28
1 files changed, 28 insertions, 0 deletions
diff --git a/crates/ide_completion/src/completions/dot.rs b/crates/ide_completion/src/completions/dot.rs
index 0880a3830..084d7721d 100644
--- a/crates/ide_completion/src/completions/dot.rs
+++ b/crates/ide_completion/src/completions/dot.rs
@@ -428,4 +428,32 @@ fn main() { make_s!().f$0; }
428 "#]], 428 "#]],
429 ) 429 )
430 } 430 }
431
432 #[test]
433 fn completes_after_macro_call_in_submodule() {
434 check(
435 r#"
436macro_rules! empty {
437 () => {};
438}
439
440mod foo {
441 #[derive(Debug, Default)]
442 struct Template2 {}
443
444 impl Template2 {
445 fn private(&self) {}
446 }
447 fn baz() {
448 let goo: Template2 = Template2 {};
449 empty!();
450 goo.$0
451 }
452}
453 "#,
454 expect![[r#"
455 me private() -> ()
456 "#]],
457 );
458 }
431} 459}