Import Result, Ok, and Err by default. Closes #3287

This commit is contained in:
Brian Anderson 2012-08-28 14:49:22 -07:00
parent cfbc7cbdc7
commit 31bbcf0267
1 changed files with 3 additions and 0 deletions

View File

@ -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;