Update src/test/ui/async-await/multiple-lifetimes/ret-impl-trait-no-fg.rs

Co-Authored-By: matthewjasper <mjjasper1@gmail.com>
This commit is contained in:
Niko Matsakis 2019-07-01 17:53:21 -04:00
parent f130e9a64d
commit 7f319a7a41

View file

@ -3,7 +3,7 @@
// Test that a feature gate is needed to use `impl Trait` as the
// return type of an async.
#![feature(arbitrary_self_types, async_await, await_macro)]
#![feature(async_await)]
trait Trait<'a, 'b> { }
impl<T> Trait<'_, '_> for T { }