]> git.lizzy.rs Git - rust.git/blobdiff - clippy_lints/src/if_not_else.rs
rustup https://github.com/rust-lang/rust/pull/67455
[rust.git] / clippy_lints / src / if_not_else.rs
index 74f98d6342fa238ce5033fce548c5636881be582..7019cfa8cc8f120715eeb8060dbe223456ca5143 100644 (file)
@@ -1,8 +1,9 @@
 //! lint on if branches that could be swapped so no `!` operation is necessary
 //! on the condition
 
+use rustc::declare_lint_pass;
 use rustc::lint::{in_external_macro, EarlyContext, EarlyLintPass, LintArray, LintContext, LintPass};
-use rustc::{declare_lint_pass, declare_tool_lint};
+use rustc_session::declare_tool_lint;
 use syntax::ast::*;
 
 use crate::utils::span_help_and_lint;