mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
Rustup to rust-lang/rust#67803
This commit is contained in:
parent
05b46034ea
commit
07f061563d
2 changed files with 2 additions and 2 deletions
|
@ -1,10 +1,10 @@
|
|||
use rustc::hir::intravisit as visit;
|
||||
use rustc::hir::HirIdSet;
|
||||
use rustc::hir::{self, *};
|
||||
use rustc::impl_lint_pass;
|
||||
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
||||
use rustc::ty::layout::LayoutOf;
|
||||
use rustc::ty::{self, Ty};
|
||||
use rustc::util::nodemap::HirIdSet;
|
||||
use rustc_session::declare_tool_lint;
|
||||
use rustc_span::source_map::Span;
|
||||
use rustc_typeck::expr_use_visitor::*;
|
||||
|
|
|
@ -4,10 +4,10 @@ use crate::utils::{get_trait_def_id, implements_trait, return_ty, same_tys, span
|
|||
use if_chain::if_chain;
|
||||
use rustc::hir;
|
||||
use rustc::hir::def_id::DefId;
|
||||
use rustc::hir::HirIdSet;
|
||||
use rustc::impl_lint_pass;
|
||||
use rustc::lint::{in_external_macro, LateContext, LateLintPass, LintArray, LintContext, LintPass};
|
||||
use rustc::ty::{self, Ty};
|
||||
use rustc::util::nodemap::HirIdSet;
|
||||
use rustc_errors::Applicability;
|
||||
use rustc_session::declare_tool_lint;
|
||||
use rustc_span::source_map::Span;
|
||||
|
|
Loading…
Reference in a new issue