diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-04-30 21:35:56 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-05-07 08:14:56 -0700 |
| commit | 06fcb6b1c81f1f5190d431c169cd0c725fecf18e (patch) | |
| tree | d746b63d32bea327145b5b224c9efa093097da4b /src/libstd/lib.rs | |
| parent | 6636215a44b27d1806a2ac646bde1d4ecaa801c4 (diff) | |
| download | rust-06fcb6b1c81f1f5190d431c169cd0c725fecf18e.tar.gz rust-06fcb6b1c81f1f5190d431c169cd0c725fecf18e.zip | |
core: Inherit the option module
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 9e74a291eef..64eff2c4762 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -146,6 +146,7 @@ pub use core::container; pub use core::default; pub use core::intrinsics; pub use core::mem; +pub use core::option; pub use core::ptr; pub use core::raw; pub use core::tuple; @@ -222,7 +223,6 @@ pub mod hash; /* Common data structures */ -pub mod option; pub mod result; pub mod cell; |
