summary refs log tree commit diff
path: root/src/liballoc/boxed.rs
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2015-03-30 17:50:31 -0400
committerNiko Matsakis <niko@alum.mit.edu>2015-04-01 11:21:42 -0400
commit30b2d9e7643de3a267029c2763edb0b44ff2396e (patch)
tree2add92cdb4fe9f4bdc7acdd8003130ddb2aacdb8 /src/liballoc/boxed.rs
parentb0af587b64786b45ac9651ee4608e1edbd53a733 (diff)
downloadrust-30b2d9e7643de3a267029c2763edb0b44ff2396e.tar.gz
rust-30b2d9e7643de3a267029c2763edb0b44ff2396e.zip
Fallout in libstd: remove impls now considered to conflict.
Diffstat (limited to 'src/liballoc/boxed.rs')
-rw-r--r--src/liballoc/boxed.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs
index adfe0f461be..c4541e34cdb 100644
--- a/src/liballoc/boxed.rs
+++ b/src/liballoc/boxed.rs
@@ -279,13 +279,6 @@ impl<T: fmt::Debug + ?Sized> fmt::Debug for Box<T> {
 }
 
 #[stable(feature = "rust1", since = "1.0.0")]
-impl fmt::Debug for Box<Any> {
-    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
-        f.pad("Box<Any>")
-    }
-}
-
-#[stable(feature = "rust1", since = "1.0.0")]
 impl<T: ?Sized> Deref for Box<T> {
     type Target = T;