rust/tests/ui/async-await/multiple-lifetimes/elided.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
217 B
Rust
Raw Normal View History

// edition:2018
// run-pass
// Test that we can use async fns with multiple arbitrary lifetimes.
async fn multiple_elided_lifetimes(_: &u8, _: &u8) {}
fn main() {
let _ = multiple_elided_lifetimes(&22, &44);
}