]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_expand/lib.rs
Use better bound names in `-Zverbose` mode
[rust.git] / src / librustc_expand / lib.rs
index 258a747832920c8817b9ee796876ead646503325..4fe7c268c4f0b47e90fe4e8911b9ec89990d734c 100644 (file)
@@ -13,7 +13,7 @@
 #[macro_export]
 macro_rules! panictry {
     ($e:expr) => {{
-        use errors::FatalError;
+        use rustc_errors::FatalError;
         use std::result::Result::{Err, Ok};
         match $e {
             Ok(e) => e,
@@ -29,7 +29,7 @@ macro_rules! panictry {
 mod proc_macro_server;
 
 pub use mbe::macro_rules::compile_declarative_macro;
-crate use syntax_pos::hygiene;
+crate use rustc_span::hygiene;
 pub mod base;
 pub mod build;
 pub mod expand;