diff --git a/src/libcore/from_str.rs b/src/libcore/from_str.rs index ed22846dca8..f14061633d4 100644 --- a/src/libcore/from_str.rs +++ b/src/libcore/from_str.rs @@ -1,3 +1,6 @@ +use option::Option; + trait FromStr { static fn from_str(s: &str) -> Option; } +