Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir_def/src/item_tree.rs')
| -rw-r--r-- | crates/hir_def/src/item_tree.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/crates/hir_def/src/item_tree.rs b/crates/hir_def/src/item_tree.rs index aab3f4b3c8..405cc2d00f 100644 --- a/crates/hir_def/src/item_tree.rs +++ b/crates/hir_def/src/item_tree.rs @@ -660,8 +660,6 @@ pub struct Static { pub name: Name, pub visibility: RawVisibilityId, pub mutable: bool, - /// Whether the static is in an `extern` block. - pub is_extern: bool, pub type_ref: Interned<TypeRef>, pub ast_id: FileAstId<ast::Static>, } @@ -695,7 +693,6 @@ pub struct TypeAlias { pub bounds: Box<[Interned<TypeBound>]>, pub generic_params: Interned<GenericParams>, pub type_ref: Option<Interned<TypeRef>>, - pub is_extern: bool, pub ast_id: FileAstId<ast::TypeAlias>, } |