rust/tests/ui/async-await/multiple-lifetimes/member-constraints-min-choice-issue-63033.rs
Ali MJ Al-Nasrawy 837c1aff05 rework min_choice algorithm of member constraints
See the inline comments for the description of the new algorithm.
2023-01-17 18:38:49 +03:00

11 lines
198 B
Rust

// 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() {}