]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/async-await/multiple-lifetimes/ret-impl-trait-one.rs
New upstream version 1.54.0+dfsg1
[rustc.git] / src / test / ui / async-await / multiple-lifetimes / ret-impl-trait-one.rs
index babc90a5e96ad395e3e14a9c68b2869a3b6e793f..7e084217c26075ee48fb846695e751c767980ddb 100644 (file)
@@ -3,8 +3,6 @@
 // Test that a feature gate is needed to use `impl Trait` as the
 // return type of an async.
 
-#![feature(member_constraints)]
-
 trait Trait<'a> { }
 impl<T> Trait<'_> for T { }