Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-ty/src/mir/lower.rs')
| -rw-r--r-- | crates/hir-ty/src/mir/lower.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/hir-ty/src/mir/lower.rs b/crates/hir-ty/src/mir/lower.rs index 733f58e8f6..66b1d840bd 100644 --- a/crates/hir-ty/src/mir/lower.rs +++ b/crates/hir-ty/src/mir/lower.rs @@ -1,6 +1,6 @@ //! This module generates a polymorphic MIR from a hir body -use std::{fmt::Write, iter, mem, sync::Arc}; +use std::{fmt::Write, iter, mem}; use base_db::FileId; use chalk_ir::{BoundVar, ConstData, DebruijnIndex, TyKind}; @@ -20,6 +20,7 @@ use hir_expand::name::Name; use la_arena::ArenaMap; use rustc_hash::FxHashMap; use syntax::TextRange; +use triomphe::Arc; use crate::{ consteval::ConstEvalError, |