mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-01 03:03:40 +00:00
4 lines
138 B
Plaintext
4 lines
138 B
Plaintext
async fn f(mut x : u8) {}
|
|
async fn g((mut x, y, mut z) : (u8, u8, u8)) {}
|
|
async fn g(mut x : u8, (a, mut b, c) : (u8, u8, u8), y : u8) {}
|