diff options
Diffstat (limited to 'compiler/rustc_driver/src/lib.rs')
| -rw-r--r-- | compiler/rustc_driver/src/lib.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/compiler/rustc_driver/src/lib.rs b/compiler/rustc_driver/src/lib.rs new file mode 100644 index 00000000000..195fc71b649 --- /dev/null +++ b/compiler/rustc_driver/src/lib.rs @@ -0,0 +1,7 @@ +// This crate is intentionally empty and a rexport of `rustc_driver_impl` to allow the code in +// `rustc_driver_impl` to be compiled in parallel with other crates. + +#![allow(unused_extern_crates)] +extern crate rustc_driver_impl; + +pub use rustc_driver_impl::*; |
