blob: 31d0736ba63c845ca4d7a21943164e3964f8de9c [file] [log] [blame]
// edition:2018
// run-pass
// Test that we can use async fns with multiple arbitrary lifetimes.
use std::ops::Add;
async fn multiple_hrtb_and_single_named_lifetime_ok<'c>(
_: impl for<'a> Add<&'a u8>,
_: impl for<'b> Add<&'b u8>,
_: &'c u8,
) {}
fn main() {}