Skip to content

Commit

Permalink
Auto merge of rust-lang#4252 - mikerite:fix-unused-import-20190704, r…
Browse files Browse the repository at this point in the history
…=flip1995

Remove unused import

changelog: none
  • Loading branch information
bors committed Jul 4, 2019
2 parents 821ad37 + c702a62 commit a9f8d3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clippy_lints/src/trivially_copy_pass_by_ref.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use rustc::hir::intravisit::FnKind;
use rustc::hir::*;
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
use rustc::session::config::Config as SessionConfig;
use rustc::ty::{self, FnSig};
use rustc::ty;
use rustc::{declare_tool_lint, impl_lint_pass};
use rustc_errors::Applicability;
use rustc_target::abi::LayoutOf;
Expand Down

0 comments on commit a9f8d3a

Please sign in to comment.