mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 13:43:17 +00:00
commit
2c3dd4a200
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
use syntax::ast::*;
|
||||
use rustc::lint::*;
|
||||
use rustc::middle::ty;
|
||||
use rustc::middle::subst::Subst;
|
||||
use std::iter;
|
||||
use std::borrow::Cow;
|
||||
|
||||
|
@ -225,7 +226,7 @@ fn is_copy(cx: &Context, ast_ty: &Ty, item: &Item) -> bool {
|
|||
None => false,
|
||||
Some(ty) => {
|
||||
let env = ty::ParameterEnvironment::for_item(cx.tcx, item.id);
|
||||
!ty.moves_by_default(&env, ast_ty.span)
|
||||
!ty.subst(cx.tcx, &env.free_substs).moves_by_default(&env, ast_ty.span)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue