about summary refs log tree commit diff
path: root/library/core/src
diff options
context:
space:
mode:
Diffstat (limited to 'library/core/src')
-rw-r--r--library/core/src/tuple.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/library/core/src/tuple.rs b/library/core/src/tuple.rs
index ea52a1131fd..c46c49547f6 100644
--- a/library/core/src/tuple.rs
+++ b/library/core/src/tuple.rs
@@ -199,17 +199,3 @@ macro_rules! last_type {
 }
 
 tuple_impls!(E D C B A Z Y X W V U T);
-
-#[stable(feature = "array_tuple_conv", since = "1.63.0")]
-impl<T> From<()> for [T; 0] {
-    fn from((): ()) -> Self {
-        []
-    }
-}
-
-#[stable(feature = "array_tuple_conv", since = "1.63.0")]
-impl<T> From<[T; 0]> for () {
-    fn from([]: [T; 0]) -> Self {
-        ()
-    }
-}