Update src/test/ui/async-await/multiple-lifetimes/elided.rs

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

View File

@ -3,7 +3,7 @@
// Test that we can use async fns with multiple arbitrary lifetimes.
#![feature(async_await, await_macro)]
#![feature(async_await)]
async fn multiple_elided_lifetimes(_: &u8, _: &u8) {}