Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/mbe/src/expander/matcher.rs')
-rw-r--r--crates/mbe/src/expander/matcher.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/mbe/src/expander/matcher.rs b/crates/mbe/src/expander/matcher.rs
index b7f25aa380..940aaacb02 100644
--- a/crates/mbe/src/expander/matcher.rs
+++ b/crates/mbe/src/expander/matcher.rs
@@ -61,19 +61,19 @@
use std::{rc::Rc, sync::Arc};
-use intern::{sym, Symbol};
-use smallvec::{smallvec, SmallVec};
+use intern::{Symbol, sym};
+use smallvec::{SmallVec, smallvec};
use span::{Edition, Span};
use tt::{
- iter::{TtElement, TtIter},
DelimSpan,
+ iter::{TtElement, TtIter},
};
use crate::{
+ ExpandError, ExpandErrorKind, MetaTemplate, ValueResult,
expander::{Binding, Bindings, ExpandResult, Fragment},
expect_fragment,
parser::{ExprKind, MetaVarKind, Op, RepeatKind, Separator},
- ExpandError, ExpandErrorKind, MetaTemplate, ValueResult,
};
impl<'a> Bindings<'a> {