@@ -788,20 +788,20 @@ impl<T> const From<T> for T {
788788 }
789789}
790790
791- /// **Stability note:** This impl does not yet exist, but we are
792- /// "reserving space" to add it in the future. See
793- /// [rust-lang/rust#64715][#64715] for details.
794- ///
795- /// [#64715]: https://github.com/rust-lang/rust/issues/64715
796- #[ stable( feature = "convert_infallible" , since = "1.34.0" ) ]
797- #[ rustc_reservation_impl = "permitting this impl would forbid us from adding \
798- `impl<T> From<!> for T` later; see rust-lang/rust#64715 for details"]
799- #[ rustc_const_unstable( feature = "const_convert" , issue = "143773" ) ]
800- impl < T > const From < !> for T {
801- fn from ( t : !) -> T {
802- t
803- }
804- }
791+ // // / **Stability note:** This impl does not yet exist, but we are
792+ // // / "reserving space" to add it in the future. See
793+ // // / [rust-lang/rust#64715][#64715] for details.
794+ // // /
795+ // // / [#64715]: https://github.com/rust-lang/rust/issues/64715
796+ // #[stable(feature = "convert_infallible", since = "1.34.0")]
797+ // #[rustc_reservation_impl = "permitting this impl would forbid us from adding \
798+ // `impl<T> From<!> for T` later; see rust-lang/rust#64715 for details"]
799+ // #[rustc_const_unstable(feature = "const_convert", issue = "143773")]
800+ // impl<T> const From<!> for T {
801+ // fn from(t: !) -> T {
802+ // t
803+ // }
804+ // }
805805
806806// TryFrom implies TryInto
807807#[ stable( feature = "try_from" , since = "1.34.0" ) ]
0 commit comments