Skip to content

Commit d970853

Browse files
committed
core: Inherit the container module
1 parent 2ad98fb commit d970853

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed
File renamed without changes.

src/libcore/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ pub mod ptr;
3333
pub mod kinds;
3434
pub mod ops;
3535
pub mod ty;
36+
pub mod container;

src/libstd/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ extern crate core;
138138
#[cfg(not(test))] pub use ty = core::ty;
139139

140140
pub use core::cast;
141+
pub use core::container;
141142
pub use core::intrinsics;
142143
pub use core::mem;
143144
pub use core::ptr;
@@ -217,7 +218,6 @@ pub mod iter;
217218
pub mod to_str;
218219
pub mod clone;
219220
pub mod hash;
220-
pub mod container;
221221
pub mod default;
222222
pub mod any;
223223

0 commit comments

Comments
 (0)