diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-05-01 18:06:59 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-05-07 08:16:42 -0700 |
| commit | 104e285eb8f848867c2666765e2aa8221e8a97d1 (patch) | |
| tree | d261196dbf9c8006ce647799fcc743a3a350910c /src/libcore/mem.rs | |
| parent | f62c121eb0de35ac03a7860e6039202f2522e527 (diff) | |
core: Get coretest working
This mostly involved frobbing imports between realstd, realcore, and the core being test. Some of the imports are a little counterintuitive, but it mainly focuses around libcore's types not implementing Show while libstd's types implement Show.
Diffstat (limited to 'src/libcore/mem.rs')
| -rw-r--r-- | src/libcore/mem.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/mem.rs b/src/libcore/mem.rs index 860304232d4..0bac90064d6 100644 --- a/src/libcore/mem.rs +++ b/src/libcore/mem.rs @@ -293,7 +293,7 @@ pub fn drop<T>(_x: T) { } mod tests { use mem::*; use option::{Some,None}; - use str::StrSlice; + use realstd::str::StrAllocating; #[test] fn size_of_basic() { |
