Fix the fallout of removing feature(import_shadowing).

This commit is contained in:
Eduard Burtescu
2014-12-15 06:03:00 +02:00
parent d5267d5845
commit 5193d542f6
20 changed files with 41 additions and 65 deletions

View File

@@ -124,13 +124,17 @@
//!
//! * It can be implemented highly efficiently on many platforms.
use core::prelude::*;
use any::Any;
use borrow::IntoCow;
use boxed::Box;
use cell::UnsafeCell;
use clone::Clone;
use kinds::Send;
use ops::{Drop, FnOnce};
use option::Option::{mod, Some, None};
use result::Result::{Err, Ok};
use sync::{Mutex, Condvar, Arc};
use str::Str;
use string::String;
use rt::{mod, unwind};
use io::{Writer, stdio};