aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_def/src/item_tree.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/hir_def/src/item_tree.rs')
-rw-r--r--crates/hir_def/src/item_tree.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_def/src/item_tree.rs b/crates/hir_def/src/item_tree.rs
index db94bb1ef..5449bbf5d 100644
--- a/crates/hir_def/src/item_tree.rs
+++ b/crates/hir_def/src/item_tree.rs
@@ -730,7 +730,7 @@ pub struct Trait {
730pub struct Impl { 730pub struct Impl {
731 pub generic_params: GenericParamsId, 731 pub generic_params: GenericParamsId,
732 pub target_trait: Option<Idx<TraitRef>>, 732 pub target_trait: Option<Idx<TraitRef>>,
733 pub target_type: Idx<TypeRef>, 733 pub self_ty: Idx<TypeRef>,
734 pub is_negative: bool, 734 pub is_negative: bool,
735 pub items: Box<[AssocItem]>, 735 pub items: Box<[AssocItem]>,
736 pub ast_id: FileAstId<ast::Impl>, 736 pub ast_id: FileAstId<ast::Impl>,