]> git.lizzy.rs Git - rust.git/blob - tests/source/issue-3241.rs
Prevent duplicate comma when formatting struct pattern with ".."
[rust.git] / tests / source / issue-3241.rs
1 // rustfmt-edition: 2018
2
3 use ::ignore;
4 use ::ignore::some::more;
5 use ::{foo, bar};
6 use ::*;
7 use ::baz::{foo, bar};
8
9 fn main() {
10     println!("Hello, world!");
11 }