From db99a3bccdc21e80d832b061defe1002527c1c46 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Tue, 12 Mar 2019 17:42:42 +0100 Subject: [PATCH] Remove stabilized feature gate in doctest --- src/libcore/convert.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libcore/convert.rs b/src/libcore/convert.rs index 0fc182348c6c2..774d648558b48 100644 --- a/src/libcore/convert.rs +++ b/src/libcore/convert.rs @@ -415,7 +415,6 @@ pub trait TryInto: Sized { /// As described, [`i32`] implements `TryFrom`: /// /// ``` -/// #![feature(try_from)] /// use std::convert::TryFrom; /// /// let big_number = 1_000_000_000_000i64;