Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-ty/src/lower.rs')
| -rw-r--r-- | crates/hir-ty/src/lower.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/hir-ty/src/lower.rs b/crates/hir-ty/src/lower.rs index d69fd8c811..fd05e516c2 100644 --- a/crates/hir-ty/src/lower.rs +++ b/crates/hir-ty/src/lower.rs @@ -18,7 +18,7 @@ use chalk_ir::{ use either::Either; use hir_def::{ - body::{Expander, LowerCtx}, + body::Expander, builtin_type::BuiltinType, data::adt::StructKind, generics::{ @@ -380,7 +380,7 @@ impl<'a> TyLoweringContext<'a> { let macro_call = macro_call.to_node(self.db.upcast()); match expander.enter_expand::<ast::Type>(self.db.upcast(), macro_call) { Ok(ExpandResult { value: Some((mark, expanded)), .. }) => { - let ctx = LowerCtx::new(self.db.upcast(), expander.current_file_id()); + let ctx = expander.ctx(self.db.upcast()); let type_ref = TypeRef::from_ast(&ctx, expanded); drop(expander); |