1
Fork 0

librustc: Forbid chained imports and fix the logic for one-level renaming imports

This commit is contained in:
Patrick Walton 2013-03-01 10:44:43 -08:00
parent 347d19934d
commit a3f728238b
92 changed files with 402 additions and 544 deletions

View file

@ -8,8 +8,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use cmp::{Eq, Ord};
use num::NumCast::from;
use core::cmp::{Eq, Ord};
use core::num::NumCast::from;
pub trait NumExt: Eq Ord NumCast {}