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

@ -2,8 +2,8 @@ use rustc::lint::*;
use rustc::middle::const_eval::EvalHint::ExprTypeChecked;
use rustc::middle::const_eval::{ConstVal, eval_const_expr_partial};
use rustc::middle::cstore::CrateStore;
use rustc::middle::subst::{Subst, TypeSpace};
use rustc::middle::ty;
use rustc::ty::subst::{Subst, TypeSpace};
use rustc::ty;
use rustc_front::hir::*;
use std::borrow::Cow;
use std::fmt;