aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_def/src/item_tree
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-08-24 21:10:16 +0100
committerGitHub <[email protected]>2020-08-24 21:10:16 +0100
commitef9cea945d5767e7c60d5931a7649a73caea23ad (patch)
tree8a2cdf4db86466eca026b32a52822092248e95ba /crates/hir_def/src/item_tree
parented09bd3cc6a37d7d22038adf7ff815f0188a9949 (diff)
parentf3ac19e8cd8be78f1eb96893482edac038739bb1 (diff)
Merge #5861
5861: Support extern types r=matklad a=jonas-schievink This is a currently unstable feature tracked at https://github.com/rust-lang/rust/issues/43467 Co-authored-by: Jonas Schievink <[email protected]>
Diffstat (limited to 'crates/hir_def/src/item_tree')
-rw-r--r--crates/hir_def/src/item_tree/lower.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/hir_def/src/item_tree/lower.rs b/crates/hir_def/src/item_tree/lower.rs
index 391ab5d39..6a503d785 100644
--- a/crates/hir_def/src/item_tree/lower.rs
+++ b/crates/hir_def/src/item_tree/lower.rs
@@ -557,6 +557,10 @@ impl Ctx {
557 let statik = self.lower_static(&ast)?; 557 let statik = self.lower_static(&ast)?;
558 statik.into() 558 statik.into()
559 } 559 }
560 ast::ExternItem::TypeAlias(ty) => {
561 let id = self.lower_type_alias(&ty)?;
562 id.into()
563 }
560 ast::ExternItem::MacroCall(_) => return None, 564 ast::ExternItem::MacroCall(_) => return None,
561 }; 565 };
562 self.add_attrs(id.into(), attrs); 566 self.add_attrs(id.into(), attrs);