fix: Fix qualified path completion not completing macros

This commit is contained in:
Lukas Wirth 2021-10-16 23:33:09 +02:00
parent f87debcf87
commit 2fbd52c78f
2 changed files with 4 additions and 0 deletions

View file

@ -122,11 +122,14 @@ use foo::$0
mod foo {
struct Private;
pub struct Foo;
macro_rules! foo_ { {} => {} }
pub use foo_ as foo;
}
struct Bar;
"#,
expect![[r#"
st Foo
ma foo! macro_rules! foo_
"#]],
);
}