]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_plugin_impl/load.rs
Rollup merge of #68438 - Aaron1011:fix/tait-non-defining, r=estebank
[rust.git] / src / librustc_plugin_impl / load.rs
index 3010691dba20d04bd615b9ed7eb942ff1069cc3f..84549c0dd4554930f09626911ef46d9bc56d8241 100644 (file)
@@ -3,18 +3,16 @@
 use crate::Registry;
 use rustc::middle::cstore::MetadataLoader;
 use rustc::session::Session;
+use rustc_errors::struct_span_err;
 use rustc_metadata::locator;
-
+use rustc_span::symbol::sym;
 use rustc_span::Span;
+use syntax::ast::{Crate, Ident};
+
 use std::borrow::ToOwned;
 use std::env;
 use std::mem;
 use std::path::PathBuf;
-use syntax::ast::{Crate, Ident};
-use syntax::struct_span_err;
-use syntax::symbol::sym;
-
-use rustc_error_codes::*;
 
 /// Pointer to a registrar function.
 type PluginRegistrarFn = fn(&mut Registry<'_>);