Formatting: don't mix mod and use
Seems to be a fallout from rustfmt transition
This commit is contained in:
parent
7fdffe183d
commit
1a2d07e084
1 changed files with 5 additions and 6 deletions
|
|
@ -1,18 +1,17 @@
|
|||
pub mod attr;
|
||||
mod diagnostics;
|
||||
mod expr;
|
||||
mod generics;
|
||||
mod item;
|
||||
mod nonterminal;
|
||||
mod pat;
|
||||
mod path;
|
||||
mod ty;
|
||||
pub use path::PathStyle;
|
||||
mod diagnostics;
|
||||
mod generics;
|
||||
mod stmt;
|
||||
use diagnostics::Error;
|
||||
|
||||
mod ty;
|
||||
|
||||
use crate::lexer::UnmatchedBrace;
|
||||
use diagnostics::Error;
|
||||
pub use path::PathStyle;
|
||||
|
||||
use log::debug;
|
||||
use rustc_ast::ast::DUMMY_NODE_ID;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue