diff options
author | Lukas Wirth <[email protected]> | 2021-04-01 17:01:18 +0100 |
---|---|---|
committer | Lukas Wirth <[email protected]> | 2021-04-01 20:31:25 +0100 |
commit | 444f6caababc3335b1ed51d08eeedac106fd8077 (patch) | |
tree | d99e32e304730f5472caf7606c4d8e6d3b959e89 /crates/ide_completion | |
parent | 75011bbccbf2e00092222a1071ba9111f834a4ae (diff) |
Resolve associated types
Diffstat (limited to 'crates/ide_completion')
-rw-r--r-- | crates/ide_completion/src/completions/qualified_path.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide_completion/src/completions/qualified_path.rs b/crates/ide_completion/src/completions/qualified_path.rs index 1891eb5b3..969249df6 100644 --- a/crates/ide_completion/src/completions/qualified_path.rs +++ b/crates/ide_completion/src/completions/qualified_path.rs | |||
@@ -24,7 +24,7 @@ pub(crate) fn complete_qualified_path(acc: &mut Completions, ctx: &CompletionCon | |||
24 | }; | 24 | }; |
25 | 25 | ||
26 | // Add associated types on type parameters and `Self`. | 26 | // Add associated types on type parameters and `Self`. |
27 | resolution.assoc_type_shorthand_candidates(ctx.db, |alias| { | 27 | resolution.assoc_type_shorthand_candidates(ctx.db, |_, alias| { |
28 | acc.add_type_alias(ctx, alias); | 28 | acc.add_type_alias(ctx, alias); |
29 | None::<()> | 29 | None::<()> |
30 | }); | 30 | }); |