about summary refs log tree commit diff
path: root/src/test/debug-info/borrowed-enum.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/debug-info/borrowed-enum.rs')
-rw-r--r--src/test/debug-info/borrowed-enum.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/test/debug-info/borrowed-enum.rs b/src/test/debug-info/borrowed-enum.rs
index ae80cdd7822..e6094fdef9f 100644
--- a/src/test/debug-info/borrowed-enum.rs
+++ b/src/test/debug-info/borrowed-enum.rs
@@ -31,8 +31,8 @@
 // the size of the discriminant value is machine dependent, this has be taken into account when
 // datatype layout should be predictable as in this case.
 enum ABC {
-	TheA { x: i64, y: i64 },
-	TheB (i64, i32, i32),
+    TheA { x: i64, y: i64 },
+    TheB (i64, i32, i32),
 }
 
 // This is a special case since it does not have the implicit discriminant field.
@@ -42,10 +42,10 @@ enum Univariant {
 
 fn main() {
 
-	// 0b0111110001111100011111000111110001111100011111000111110001111100 = 8970181431921507452
-	// 0b01111100011111000111110001111100 = 2088533116
-	// 0b0111110001111100 = 31868
-	// 0b01111100 = 124
+    // 0b0111110001111100011111000111110001111100011111000111110001111100 = 8970181431921507452
+    // 0b01111100011111000111110001111100 = 2088533116
+    // 0b0111110001111100 = 31868
+    // 0b01111100 = 124
     let the_a = TheA { x: 0, y: 8970181431921507452 };
     let the_a_ref: &ABC = &the_a;