Skip to content

Commit

Permalink
Formatting: don't mix mod and use
Browse files Browse the repository at this point in the history
Seems to be a fallout from rustfmt transition
  • Loading branch information
matklad committed Aug 2, 2020
1 parent 7fdffe1 commit 1a2d07e
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/librustc_parse/parser/mod.rs
@@ -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;
Expand Down

0 comments on commit 1a2d07e

Please sign in to comment.