Added test for crate non-alphabetizing

This commit is contained in:
JoshBrudnak 2018-10-23 19:00:42 -04:00
parent 799005f6ae
commit ce54aea4c8
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,11 @@
use {
crate::foo::bar,
bytes::{Buf, BufMut},
std::io,
};
mod foo {
pub mod bar {}
}
fn main() {}

View File

@ -0,0 +1,11 @@
use {
crate::foo::bar,
bytes::{Buf, BufMut},
std::io,
};
mod foo {
pub mod bar {}
}
fn main() {}