about summary refs log tree commit diff
path: root/src/libtest
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2014-03-13 18:53:14 +1100
committerHuon Wilson <dbau.pp+github@gmail.com>2014-03-14 11:28:39 +1100
commit62792f09f20221add2484608fc3071259067b79a (patch)
treed347a7b5f2d4f012c549cf8ebc30835777902c87 /src/libtest
parent6ff3c9995e63b63c16d13739a0fc2d321f95410e (diff)
downloadrust-62792f09f20221add2484608fc3071259067b79a.tar.gz
rust-62792f09f20221add2484608fc3071259067b79a.zip
lint: add lint for use of a `~[T]`.
This is useless at the moment (since pretty much every crate uses
`~[]`), but should help avoid regressions once completely removed from a
crate.
Diffstat (limited to 'src/libtest')
-rw-r--r--src/libtest/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs
index 9ebd7d72c91..d791fa0479e 100644
--- a/src/libtest/lib.rs
+++ b/src/libtest/lib.rs
@@ -30,6 +30,7 @@
 #[crate_type = "dylib"];
 
 #[feature(asm)];
+#[allow(deprecated_owned_vector)];
 
 extern crate collections;
 extern crate extra;