diff options
| author | Joshua Nelson <jyn514@gmail.com> | 2021-04-27 13:00:36 -0400 |
|---|---|---|
| committer | Joshua Nelson <jyn514@gmail.com> | 2021-04-27 13:00:36 -0400 |
| commit | f4bd12cfde4028d793c44f2cf42ad00fe295e8c6 (patch) | |
| tree | f5a7de7e94dc3e7d6ee03cd17d0ade28af67b887 /src | |
| parent | 419bf6bbd827f07406447419d84a154ce9294aa8 (diff) | |
| download | rust-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.rs | 2 |
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`.) |
