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 a6d0e34 commit 7a568f7Copy full SHA for 7a568f7
crates/ide-completion/src/context.rs
@@ -585,9 +585,6 @@ impl<'a> CompletionContext<'a> {
585
return None;
586
}
587
588
- T![::] if !is_prev_token_valid_path_start_or_segment(&original_token) => {
589
- return None;
590
- }
591
_ => {}
592
593
crates/ide-completion/src/tests/special.rs
@@ -977,13 +977,6 @@ fn foo { crate:::$0 }
977
check(
978
r#"
979
fn foo { crate::::$0 }
980
-"#,
981
- expect![""],
982
- );
983
-
984
- check(
985
- r#"
986
-fn foo { crate:::::$0 }
987
"#,
988
expect![""],
989
);
0 commit comments