]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/nested_impl_trait.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / nested_impl_trait.rs
index f6302c0f3b3e2f0e1b43fe00db886ae30a2e2bac..be0454472dd0b7d03af9c2be960b3372fe7b730b 100644 (file)
@@ -7,8 +7,6 @@
 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
-#![feature(conservative_impl_trait, universal_impl_trait)]
-
 use std::fmt::Debug;
 
 fn fine(x: impl Into<u32>) -> impl Into<u32> { x }