mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
4cfdbd328b
This is an extension of the previous commit. It means the output of something like this: ``` stringify!(let a: Vec<u32> = vec![];) ``` goes from this: ``` let a: Vec<u32> = vec![] ; ``` With this PR, it now produces this string: ``` let a: Vec<u32> = vec![]; ```
4 lines
133 B
Plaintext
4 lines
133 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) {}
|