summary refs log tree commit diff
path: root/compiler/rustc_expand/src/errors.rs
diff options
context:
space:
mode:
authornidnogg <henriquevt98@gmail.com>2022-08-17 11:20:37 -0300
committernidnogg <henriquevt98@gmail.com>2022-08-17 11:20:37 -0300
commitcaab20c431a05dc3f01d3810ac13b6315f2d9b70 (patch)
treecea8c22d508f2300932247765f3865ab2909de0c /compiler/rustc_expand/src/errors.rs
parentc6f9a9c410e063f59bc2f6958674099b3fe5f184 (diff)
downloadrust-caab20c431a05dc3f01d3810ac13b6315f2d9b70.tar.gz
rust-caab20c431a05dc3f01d3810ac13b6315f2d9b70.zip
Moved structs to rustc_expand::errors, added several more migrations, fixed slug name
Diffstat (limited to 'compiler/rustc_expand/src/errors.rs')
-rw-r--r--compiler/rustc_expand/src/errors.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler/rustc_expand/src/errors.rs b/compiler/rustc_expand/src/errors.rs
index f8b8750a789..3f62120b1c8 100644
--- a/compiler/rustc_expand/src/errors.rs
+++ b/compiler/rustc_expand/src/errors.rs
@@ -1,6 +1,6 @@
 use rustc_macros::SessionDiagnostic;
+use rustc_span::symbol::MacroRulesNormalizedIdent;
 use rustc_span::Span;
-use rustc_span::symbol::{MacroRulesNormalizedIdent};
 
 #[derive(SessionDiagnostic)]
 #[error(expand::expr_repeat_no_syntax_vars)]
@@ -46,5 +46,3 @@ pub(crate) struct MetaVarsDifSeqMatchers {
     pub span: Span,
     pub msg: String,
 }
-
-