about summary refs log tree commit diff
path: root/src/librustc_allocator
diff options
context:
space:
mode:
authorMateusz MikuĊ‚a <matti@marinelayer.io>2019-04-15 13:35:08 +0200
committerMazdak Farrokhzad <twingoow@gmail.com>2019-04-17 05:15:00 +0200
commit87e4b43d518c754cc8c522da04ac3a6ae30eb7aa (patch)
tree6c18c8850f81ccf017850f6530fe79f4d3de31ad /src/librustc_allocator
parent531a9bdbe6dd03943089075fe72d57a6f3ee0456 (diff)
downloadrust-87e4b43d518c754cc8c522da04ac3a6ae30eb7aa.tar.gz
rust-87e4b43d518c754cc8c522da04ac3a6ae30eb7aa.zip
Deny `internal` in stage0
Diffstat (limited to 'src/librustc_allocator')
-rw-r--r--src/librustc_allocator/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_allocator/lib.rs b/src/librustc_allocator/lib.rs
index a9e422fb238..3aef5a76a3a 100644
--- a/src/librustc_allocator/lib.rs
+++ b/src/librustc_allocator/lib.rs
@@ -2,7 +2,7 @@
 #![feature(rustc_private)]
 
 #![deny(rust_2018_idioms)]
-#![cfg_attr(not(stage0), deny(internal))]
+#![deny(internal)]
 
 pub mod expand;