Reformat source tree (minus a couple tests that are still grumpy).
diff --git a/src/test/run-pass/structured-compare.rs b/src/test/run-pass/structured-compare.rs
index e677c3c..e9bdfd6 100644
--- a/src/test/run-pass/structured-compare.rs
+++ b/src/test/run-pass/structured-compare.rs
@@ -1,20 +1,19 @@
-tag foo {
- large;
- small;
-}
+
+
+tag foo { large; small; }
fn main() {
- auto a = tup(1,2,3);
- auto b = tup(1,2,3);
- assert (a == b);
- assert (a != tup(1,2,4));
- assert (a < tup(1,2,4));
- assert (a <= tup(1,2,4));
- assert (tup(1,2,4) > a);
- assert (tup(1,2,4) >= a);
- auto x = large;
- auto y = small;
- assert (x != y);
- assert (x == large);
- assert (x != small);
+ auto a = tup(1, 2, 3);
+ auto b = tup(1, 2, 3);
+ assert (a == b);
+ assert (a != tup(1, 2, 4));
+ assert (a < tup(1, 2, 4));
+ assert (a <= tup(1, 2, 4));
+ assert (tup(1, 2, 4) > a);
+ assert (tup(1, 2, 4) >= a);
+ auto x = large;
+ auto y = small;
+ assert (x != y);
+ assert (x == large);
+ assert (x != small);
}
\ No newline at end of file