Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-def/src/data.rs')
| -rw-r--r-- | crates/hir-def/src/data.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/hir-def/src/data.rs b/crates/hir-def/src/data.rs index 95581727ad..668b436e01 100644 --- a/crates/hir-def/src/data.rs +++ b/crates/hir-def/src/data.rs @@ -638,7 +638,6 @@ impl<'a> AssocItemCollector<'a> { self.items.push((item.name.clone(), def.into())); } AssocItem::MacroCall(call) => { - // TODO: These are the wrong errors to report, report in collect_macro_items instead let file_id = self.expander.current_file_id(); let root = self.db.parse_or_expand(file_id); if let Some(root) = root { |