Handle breakage after libcore split

API Changes:

- &[T] and ~[T] no longer support the addition operator (+)
This commit is contained in:
Kevin Ballard
2014-05-07 21:53:11 -07:00
parent 300d865fa4
commit 9fb8741b2e
23 changed files with 75 additions and 70 deletions

View File

@@ -111,4 +111,6 @@ mod std {
#[cfg(test)] pub use realstd::rt; // needed for fail!()
#[cfg(test)] pub use realstd::option; // needed for assert!()
#[cfg(test)] pub use realstd::os; // needed for tests
#[cfg(test)] pub use realstd::slice; // needed for tests
#[cfg(test)] pub use realstd::vec; // needed for vec![]
}