core: Move core::rt to core::unstable::lang

This commit is contained in:
Brian Anderson 2013-03-01 17:27:14 -08:00
parent bcf626812b
commit 9639ca5aa8
5 changed files with 5 additions and 11 deletions

View file

@ -19,11 +19,7 @@ use prelude::*;
use task::rt;
use task::local_data::LocalDataKey;
#[cfg(notest)]
use rt::rust_task;
#[cfg(test)]
#[allow(non_camel_case_types)]
type rust_task = libc::c_void;
use super::rt::rust_task;
pub trait LocalData { }
impl<T:Durable> LocalData for @T { }