rustfmt-nightly 1.1.1

Tool to find and fix Rust formatting issues
Documentation
// rustfmt-reorder_imports: true

use d; use c; use b; use a; 
// The previous line has a space after the `use a;` 

mod a { use d; use c; use b; use a; }

use z;

use y;



use x;
use a;