about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/test/run-pass/type-sizes.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/run-pass/type-sizes.rs b/src/test/run-pass/type-sizes.rs
index 30cae08381a..677f7edd05b 100644
--- a/src/test/run-pass/type-sizes.rs
+++ b/src/test/run-pass/type-sizes.rs
@@ -24,6 +24,7 @@ enum e1 {
 enum e2 {
     a(u32), b
 }
+
 enum e3 {
     a([u64, ..0], u32), b
 }
@@ -47,6 +48,7 @@ pub fn main() {
 
     // Make sure enum types are the appropriate size, mostly
     // around ensuring alignment is handled properly
+
     assert_eq!(size_of::<e1>(), 8 as uint);
     assert_eq!(size_of::<e2>(), 8 as uint);
     assert_eq!(size_of::<e3>(), 16 as uint);