summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-01-04 11:01:04 +0000
committerbors <bors@rust-lang.org>2015-01-04 11:01:04 +0000
commit856b90c400b0a3f5e8018255c7e33d3c1ae84a10 (patch)
treee7f5fe2a5ba597de623119acc8f1567f3ed58659 /src/liballoc
parent7e3d1157246a13a7830431ce0253368029c8ee3e (diff)
parent5172b8046ac6e23c6f106df79dd8c887516896b6 (diff)
downloadrust-856b90c400b0a3f5e8018255c7e33d3c1ae84a10.tar.gz
rust-856b90c400b0a3f5e8018255c7e33d3c1ae84a10.zip
auto merge of #20393 : japaric/rust/impl-any, r=aturon
Needs a snapshot that contains PR #20385

r? @aturon 
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/boxed.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs
index 362f6c66b59..2c318181b09 100644
--- a/src/liballoc/boxed.rs
+++ b/src/liballoc/boxed.rs
@@ -12,7 +12,7 @@
 
 #![stable]
 
-use core::any::{Any, AnyRefExt};
+use core::any::Any;
 use core::clone::Clone;
 use core::cmp::{PartialEq, PartialOrd, Eq, Ord, Ordering};
 use core::default::Default;