commit | 206ab89629298cc9f4b6fb0aa1cd7556c65b5bfe | [log] [tgz] |
---|---|---|
author | Patrick Walton <[email protected]> | Sat May 25 02:35:29 2013 |
committer | Patrick Walton <[email protected]> | Thu May 30 02:04:53 2013 |
tree | 6a899250550f71bf26f5d57e3cbeee8b97661c9f | |
parent | 4e3d4b36dc3a030bb5f152afbfccfd4427830dac [diff] [blame] |
librustc: Stop reexporting the standard modules from prelude.
diff --git a/src/test/run-pass/expr-match-struct.rs b/src/test/run-pass/expr-match-struct.rs index 57483d9..7cfcc38 100644 --- a/src/test/run-pass/expr-match-struct.rs +++ b/src/test/run-pass/expr-match-struct.rs
@@ -23,7 +23,7 @@ enum mood { happy, sad, } -impl cmp::Eq for mood { +impl Eq for mood { fn eq(&self, other: &mood) -> bool { ((*self) as uint) == ((*other) as uint) }