diff options
| author | chansuke <chansuke@georepublic.de> | 2019-06-02 01:50:10 +0900 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2019-06-16 13:08:09 +0300 |
| commit | 89292beedb84977970a6ab0e3a0ad695e2fcf7db (patch) | |
| tree | 8df9ca3e6d5b4ae2f2bfb7da3c39c87a4fa92cdc | |
| parent | 374c63e0fc356eb61b1966cb6026a2a49fe9226d (diff) | |
| download | rust-89292beedb84977970a6ab0e3a0ad695e2fcf7db.tar.gz rust-89292beedb84977970a6ab0e3a0ad695e2fcf7db.zip | |
Separate liballoc module
| -rw-r--r-- | src/liballoc/lib.rs | 2 | ||||
| -rw-r--r-- | src/liballoc/tests.rs (renamed from src/liballoc/boxed_test.rs) | 0 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs index c530ac24275..5fc58c8ab5a 100644 --- a/src/liballoc/lib.rs +++ b/src/liballoc/lib.rs @@ -141,7 +141,7 @@ mod boxed { pub use std::boxed::Box; } #[cfg(test)] -mod boxed_test; +mod tests; pub mod collections; #[cfg(all(target_has_atomic = "ptr", target_has_atomic = "cas"))] pub mod sync; diff --git a/src/liballoc/boxed_test.rs b/src/liballoc/tests.rs index 654eabd0703..654eabd0703 100644 --- a/src/liballoc/boxed_test.rs +++ b/src/liballoc/tests.rs |
