summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/multiple-lifetimes/member-constraints-min-choice-issue-63033.rs
blob: 614f189729126535ab324194f7c85e41647381ce (plain)
1
2
3
4
5
6
7
8
9
10
// Regression test for #63033.

// check-pass
// edition: 2018

async fn test1(_: &'static u8, _: &'_ u8, _: &'_ u8) {}

async fn test2<'s>(_: &'s u8, _: &'_ &'s u8, _: &'_ &'s u8) {}

fn main() {}