about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorJoshua Nelson <jyn514@gmail.com>2021-04-27 13:00:36 -0400
committerJoshua Nelson <jyn514@gmail.com>2021-04-27 13:00:36 -0400
commitf4bd12cfde4028d793c44f2cf42ad00fe295e8c6 (patch)
treef5a7de7e94dc3e7d6ee03cd17d0ade28af67b887 /src
parent419bf6bbd827f07406447419d84a154ce9294aa8 (diff)
downloadrust-f4bd12cfde4028d793c44f2cf42ad00fe295e8c6.tar.gz
rust-f4bd12cfde4028d793c44f2cf42ad00fe295e8c6.zip
Switch `rustc::internal` from deny to warn
These should still obey deny-warnings.
Diffstat (limited to 'src')
-rw-r--r--src/driver.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/driver.rs b/src/driver.rs
index fa0c5f01430..750a23e8c98 100644
--- a/src/driver.rs
+++ b/src/driver.rs
@@ -4,7 +4,7 @@
 // warn on lints, that are included in `rust-lang/rust`s bootstrap
 #![warn(rust_2018_idioms, unused_lifetimes)]
 // warn on rustc internal lints
-#![deny(rustc::internal)]
+#![warn(rustc::internal)]
 
 // FIXME: switch to something more ergonomic here, once available.
 // (Currently there is no way to opt into sysroot crates without `extern crate`.)