diff options
| author | Mateusz MikuĊa <matti@marinelayer.io> | 2019-04-15 13:35:08 +0200 |
|---|---|---|
| committer | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-04-17 05:15:00 +0200 |
| commit | 87e4b43d518c754cc8c522da04ac3a6ae30eb7aa (patch) | |
| tree | 6c18c8850f81ccf017850f6530fe79f4d3de31ad /src/librustc_errors | |
| parent | 531a9bdbe6dd03943089075fe72d57a6f3ee0456 (diff) | |
| download | rust-87e4b43d518c754cc8c522da04ac3a6ae30eb7aa.tar.gz rust-87e4b43d518c754cc8c522da04ac3a6ae30eb7aa.zip | |
Deny `internal` in stage0
Diffstat (limited to 'src/librustc_errors')
| -rw-r--r-- | src/librustc_errors/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_errors/lib.rs b/src/librustc_errors/lib.rs index 71bef54cd17..cb45e13c4d2 100644 --- a/src/librustc_errors/lib.rs +++ b/src/librustc_errors/lib.rs @@ -6,7 +6,7 @@ #![feature(nll)] #![feature(optin_builtin_traits)] #![deny(rust_2018_idioms)] -#![cfg_attr(not(stage0), deny(internal))] +#![deny(internal)] #[allow(unused_extern_crates)] extern crate serialize as rustc_serialize; // used by deriving |
