From 2b8f8922ee5852f97e92082b209c0f4d940a6edb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20K=C3=A5re=20Alsaker?= Date: Thu, 2 Feb 2023 07:47:39 +0100 Subject: [PATCH] Remove unneeded extern crate --- compiler/rustc_driver/src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/compiler/rustc_driver/src/lib.rs b/compiler/rustc_driver/src/lib.rs index 195fc71b649d..4eabba575f42 100644 --- a/compiler/rustc_driver/src/lib.rs +++ b/compiler/rustc_driver/src/lib.rs @@ -1,7 +1,4 @@ // 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::*;