summary refs log tree commit diff
path: root/src/libcoretest
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2015-01-08 21:45:49 +1100
committerNiko Matsakis <niko@alum.mit.edu>2015-01-08 11:02:23 -0500
commit4f5a57e80ef6c029278f1e8ef59e13dcea9b255b (patch)
tree6d89ac255b41af6a2444fdee30a909c553cc0c82 /src/libcoretest
parentd12514bc589c1955108d517acd6d5952929b1650 (diff)
downloadrust-4f5a57e80ef6c029278f1e8ef59e13dcea9b255b.tar.gz
rust-4f5a57e80ef6c029278f1e8ef59e13dcea9b255b.zip
Remove warning from the libraries.
This adds the int_uint feature to *every* library, whether or not it
needs it.
Diffstat (limited to 'src/libcoretest')
-rw-r--r--src/libcoretest/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcoretest/lib.rs b/src/libcoretest/lib.rs
index c12981b7d24..0d371dbe153 100644
--- a/src/libcoretest/lib.rs
+++ b/src/libcoretest/lib.rs
@@ -11,6 +11,7 @@
 #![feature(unsafe_destructor, slicing_syntax)]
 #![feature(unboxed_closures)]
 #![feature(box_syntax)]
+#![allow(unknown_features)] #![feature(int_uint)]
 
 extern crate core;
 extern crate test;