We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b7d928 commit 6ca6f10Copy full SHA for 6ca6f10
crates/ide_completion/src/completions/flyimport.rs
@@ -921,4 +921,26 @@ fn main() {
921
}"#,
922
);
923
}
924
+
925
+ #[test]
926
+ fn fuzzy_unresolved_path() {
927
+ check(
928
+ r#"
929
+mod foo {
930
+ pub mod bar {
931
+ pub struct Item;
932
933
+ impl Item {
934
+ pub const TEST_ASSOC: usize = 3;
935
+ }
936
937
+}
938
939
+fn main() {
940
+ let zz = "sdsd";
941
+ bar::Ass$0
942
+}"#,
943
+ expect![[]],
944
+ )
945
946
0 commit comments