about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/libcore/core.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libcore/core.rs b/src/libcore/core.rs
index afa5216ab51..a897e9cab7c 100644
--- a/src/libcore/core.rs
+++ b/src/libcore/core.rs
@@ -8,6 +8,8 @@ import Option = option::Option;
 #[cfg(stage0)]
 import option = option::Option;
 
+import result::{Result, Ok, Err};
+
 import Path = path2::Path;
 import GenericPath = path2::GenericPath;
 import WindowsPath = path2::WindowsPath;
@@ -24,6 +26,7 @@ import to_str::ToStr;
 
 export Path, WindowsPath, PosixPath, GenericPath;
 export Option, Some, None, unreachable;
+export Result, Ok, Error;
 export extensions;
 // The following exports are the extension impls for numeric types
 export Num, Times, TimesIx;