mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-28 11:07:42 +00:00
11 lines
200 B
Rust
11 lines
200 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() {}
|