about summary refs log tree commit diff
path: root/tests/rustdoc/auto-impl-for-trait.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rustdoc/auto-impl-for-trait.rs')
-rw-r--r--tests/rustdoc/auto-impl-for-trait.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/rustdoc/auto-impl-for-trait.rs b/tests/rustdoc/auto-impl-for-trait.rs
deleted file mode 100644
index bc658fbfc8c..00000000000
--- a/tests/rustdoc/auto-impl-for-trait.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-// Test for https://github.com/rust-lang/rust/issues/48463 issue.
-
-use std::any::Any;
-use std::ops::Deref;
-
-pub struct AnyValue {
-    val: Box<Any>,
-}
-
-impl Deref for AnyValue {
-    type Target = Any;
-
-    fn deref(&self) -> &Any {
-        &*self.val
-    }
-}