mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-15 20:45:45 +03:00
Formatting: don't mix mod and use
Seems to be a fallout from rustfmt transition
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user