about summary refs log tree commit diff
path: root/src/test/debug-info/borrowed-c-style-enum.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/debug-info/borrowed-c-style-enum.rs')
-rw-r--r--src/test/debug-info/borrowed-c-style-enum.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/debug-info/borrowed-c-style-enum.rs b/src/test/debug-info/borrowed-c-style-enum.rs
index 2ca4c5a4397..70c85258c79 100644
--- a/src/test/debug-info/borrowed-c-style-enum.rs
+++ b/src/test/debug-info/borrowed-c-style-enum.rs
@@ -28,13 +28,13 @@ enum ABC { TheA, TheB, TheC }
 
 fn main() {
     let the_a = TheA;
-    let the_a_ref : &ABC = &the_a;
+    let the_a_ref: &ABC = &the_a;
 
     let the_b = TheB;
-    let the_b_ref : &ABC = &the_b;
+    let the_b_ref: &ABC = &the_b;
 
     let the_c = TheC;
-    let the_c_ref : &ABC = &the_c;
+    let the_c_ref: &ABC = &the_c;
 
     zzz();
 }