only use #[no_core] in libcore

This commit is contained in:
Daniel Micay
2013-04-26 12:24:15 -04:00
parent dd5b1de181
commit f792baba42
211 changed files with 6 additions and 810 deletions

View File

@@ -25,7 +25,6 @@ use core::cast;
use core::cell::Cell;
use core::comm::{oneshot, PortOne, send_one};
use core::pipes::recv;
use core::prelude::*;
use core::task;
#[doc = "The future type"]
@@ -173,7 +172,6 @@ pub fn spawn<A:Owned>(blk: ~fn() -> A) -> Future<A> {
#[allow(non_implicitly_copyable_typarams)]
#[cfg(test)]
mod test {
use core::prelude::*;
use future::*;