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/structured-compare.rs b/src/test/run-pass/structured-compare.rs index d03bc59..c67a72e 100644 --- a/src/test/run-pass/structured-compare.rs +++ b/src/test/run-pass/structured-compare.rs
@@ -12,7 +12,7 @@ enum foo { large, small, } -impl cmp::Eq for foo { +impl Eq for foo { fn eq(&self, other: &foo) -> bool { ((*self) as uint) == ((*other) as uint) }