Update rust-clippy to rustc 1.9.0-nightly (d5a91e695 2016-03-26)

move cfg, infer, traits and ty from middle to top-level
move middle::subst into middle::ty
track the extern-crate def-id rather than path (rustc ab9b844)
This commit is contained in:
josephDunne
2016-03-27 19:59:02 +01:00
parent f51293c399
commit aa819b7748
24 changed files with 43 additions and 38 deletions

View File

@@ -1,7 +1,7 @@
use rustc::lint::*;
use rustc::middle::const_eval::EvalHint::ExprTypeChecked;
use rustc::middle::const_eval::{eval_const_expr_partial, ConstVal};
use rustc::middle::ty::TyArray;
use rustc::ty::TyArray;
use rustc_front::hir::*;
use rustc_const_eval::ConstInt;
use syntax::ast::RangeLimits;