diff options
author | Florian Diebold <[email protected]> | 2019-03-26 22:07:26 +0000 |
---|---|---|
committer | Florian Diebold <[email protected]> | 2019-04-14 10:28:53 +0100 |
commit | 413c87f155ab6b389b1cc122b5739716acccb476 (patch) | |
tree | ece00ee4bb46d32ec2a3c4124a43e3634eacd007 /crates/ra_ide_api/src | |
parent | 23b876bc3b00c53ce24b8a99b4f4bf190fc6300e (diff) |
Get substs for trait refs in impl blocks
Diffstat (limited to 'crates/ra_ide_api/src')
-rw-r--r-- | crates/ra_ide_api/src/goto_definition.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide_api/src/goto_definition.rs b/crates/ra_ide_api/src/goto_definition.rs index 517dffbca..40a2bd148 100644 --- a/crates/ra_ide_api/src/goto_definition.rs +++ b/crates/ra_ide_api/src/goto_definition.rs | |||
@@ -104,7 +104,7 @@ pub(crate) fn reference_definition( | |||
104 | } | 104 | } |
105 | } | 105 | } |
106 | hir::PathResolution::AssocItem(assoc) => { | 106 | hir::PathResolution::AssocItem(assoc) => { |
107 | return Exact(NavigationTarget::from_impl_item(db, assoc)) | 107 | return Exact(NavigationTarget::from_impl_item(db, assoc)); |
108 | } | 108 | } |
109 | } | 109 | } |
110 | } | 110 | } |