mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-04 18:40:57 +03:00
3ae2d21c12
Simplify `vec!` macro by replacing 2 following branches: - `($($x:expr),*) => (...)` - `($($x:expr,)*) => (...)` with one: - `($($x:expr),* $(,)?) => (...)`