rust/tests/target/issue-1124.rs
2017-09-06 18:48:09 +09:00

17 lines
164 B
Rust

use a;
use b;
use c;
use d;
// The previous line has a space after the `use a;`
mod a {
use a;
use b;
use c;
use d;
}
use a;
use x;
use y;
use z;