]> git.lizzy.rs Git - rust.git/blobdiff - src/liballoc/boxed.rs
Fallout in libstd: remove impls now considered to conflict.
[rust.git] / src / liballoc / boxed.rs
index adfe0f461bea39363102d82372fa6bcbea19a20c..c4541e34cdb359189778c55b280456062bd1eaa1 100644 (file)
@@ -278,13 +278,6 @@ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
     }
 }
 
-#[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;