about summary refs log tree commit diff
path: root/src/libcore/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-04-30 20:33:08 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-05-07 08:13:24 -0700
commit71924525458e508be139d76f48b34e64a5a9dca3 (patch)
tree744d30cadfa4eb496be2da9f25a3f9d6b372223f /src/libcore/lib.rs
parentd9708539afa16bf233332fee846cc9c6d7344517 (diff)
downloadrust-71924525458e508be139d76f48b34e64a5a9dca3.tar.gz
rust-71924525458e508be139d76f48b34e64a5a9dca3.zip
core: Inherit the char module
Diffstat (limited to 'src/libcore/lib.rs')
-rw-r--r--src/libcore/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs
index 1f94b41b9bb..dd64148aa2b 100644
--- a/src/libcore/lib.rs
+++ b/src/libcore/lib.rs
@@ -34,3 +34,7 @@ pub mod kinds;
 pub mod ops;
 pub mod ty;
 pub mod container;
+
+/* Core types and methods on primitives */
+
+pub mod char;