2023-01-16 01:31:58 +03:00
|
|
|
// Regression test for #63033.
|
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ check-pass
|
|
|
|
//@ edition: 2018
|
2023-01-16 01:31:58 +03:00
|
|
|
|
|
|
|
async fn test1(_: &'static u8, _: &'_ u8, _: &'_ u8) {}
|
|
|
|
|
|
|
|
async fn test2<'s>(_: &'s u8, _: &'_ &'s u8, _: &'_ &'s u8) {}
|
|
|
|
|
|
|
|
fn main() {}
|