about summary refs log tree commit diff
path: root/src/librustc_driver/lib.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2020-08-17 23:16:08 +0000
committerbors <bors@rust-lang.org>2020-08-17 23:16:08 +0000
commit668ef72f4429059240ee361a2f0f748558a5326f (patch)
tree5a3c09cc5fb0343fc7a0cd948b02ae1c392099b3 /src/librustc_driver/lib.rs
parent792c645ca7d11a8d254df307d019c5bf01445c37 (diff)
parenta888b02884883de41d0ce08aa62a6cd6d4790951 (diff)
downloadrust-668ef72f4429059240ee361a2f0f748558a5326f.tar.gz
rust-668ef72f4429059240ee361a2f0f748558a5326f.zip
Auto merge of #75120 - JulianKnodt:rm_reps, r=oli-obk
rust_ast::ast => rustc_ast

Rework of #71199 which is a rework #70621

Still working on this but just made the PR to track progress

r? @Dylan-DPC
Diffstat (limited to 'src/librustc_driver/lib.rs')
-rw-r--r--src/librustc_driver/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_driver/lib.rs b/src/librustc_driver/lib.rs
index cd94ccc7ad7..09f5b22cc63 100644
--- a/src/librustc_driver/lib.rs
+++ b/src/librustc_driver/lib.rs
@@ -15,7 +15,7 @@ extern crate lazy_static;
 
 pub extern crate rustc_plugin_impl as plugin;
 
-use rustc_ast::ast;
+use rustc_ast as ast;
 use rustc_codegen_ssa::{traits::CodegenBackend, CodegenResults};
 use rustc_data_structures::profiling::print_time_passes_entry;
 use rustc_data_structures::sync::SeqCst;