X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Flibrustc_expand%2Flib.rs;h=4fe7c268c4f0b47e90fe4e8911b9ec89990d734c;hb=3fb18104761fe5b6a8a70435ccff54c65400f360;hp=258a747832920c8817b9ee796876ead646503325;hpb=b223f5b0435484071ae62153be464f2ff8118513;p=rust.git diff --git a/src/librustc_expand/lib.rs b/src/librustc_expand/lib.rs index 258a7478329..4fe7c268c4f 100644 --- a/src/librustc_expand/lib.rs +++ b/src/librustc_expand/lib.rs @@ -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;