about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2015-09-12 16:10:12 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2015-09-17 14:13:12 +0300
commit50e42ea9f70361ccd71682070c01ea808891f0ce (patch)
tree2cd554300fc90df2e2432f6384b86bb1b2f069da /src/liballoc
parentd3fc6e1858f6882bc9bd14641420bf3c4f7ee86b (diff)
downloadrust-50e42ea9f70361ccd71682070c01ea808891f0ce.tar.gz
rust-50e42ea9f70361ccd71682070c01ea808891f0ce.zip
Correctly walk import lists in AST visitors
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs
index 1beb015364d..66de5d7bea8 100644
--- a/src/liballoc/lib.rs
+++ b/src/liballoc/lib.rs
@@ -100,7 +100,7 @@
 #![cfg_attr(stage0, feature(alloc_system))]
 #![cfg_attr(not(stage0), feature(needs_allocator))]
 
-#![cfg_attr(test, feature(test, rustc_private))]
+#![cfg_attr(test, feature(test, rustc_private, box_heap))]
 
 #[cfg(stage0)]
 extern crate alloc_system;