blob: f9c062fc36312c31c94e5dffd6072d5421c56f56 [file] [log] [blame]
//@ edition:2018
//@ check-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() {}