diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2014-07-02 10:21:15 +1000 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2014-07-04 11:20:54 +1000 |
| commit | 7c92735f08711cf15dd2dbdbd6119d49ae765807 (patch) | |
| tree | 65a61ba4cc54eb1f87e26451d4b0497566360ab1 /src/libstd | |
| parent | f89cc11827a36e6d1eb4e22322a51eb9b1153450 (diff) | |
| download | rust-7c92735f08711cf15dd2dbdbd6119d49ae765807.tar.gz rust-7c92735f08711cf15dd2dbdbd6119d49ae765807.zip | |
core: add a primitive page for `()`.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 48ccd1aa22c..39da8afd03e 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -160,6 +160,9 @@ pub use core::ptr; pub use core::raw; pub use core::simd; pub use core::tuple; +// FIXME #15320: primitive documentation needs top-level modules, this +// should be `std::tuple::unit`. +pub use core::unit; #[cfg(not(test))] pub use core::ty; pub use core::result; pub use core::option; |
