Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-def/src/hir/format_args.rs')
| -rw-r--r-- | crates/hir-def/src/hir/format_args.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/hir-def/src/hir/format_args.rs b/crates/hir-def/src/hir/format_args.rs index d8f8e6026a..75025a984f 100644 --- a/crates/hir-def/src/hir/format_args.rs +++ b/crates/hir-def/src/hir/format_args.rs @@ -2,6 +2,7 @@ use std::mem; use hir_expand::name::Name; +use rustc_parse_format as parse; use syntax::{ ast::{self, IsString}, AstToken, SmolStr, TextRange, @@ -9,8 +10,6 @@ use syntax::{ use crate::hir::ExprId; -mod parse; - #[derive(Debug, Clone, PartialEq, Eq)] pub struct FormatArgs { pub template: Box<[FormatArgsPiece]>, |