rust/tests/source/issue-1124.rs
2018-06-27 15:28:33 +02:00

14 lines
154 B
Rust

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;