about summary refs log tree commit diff
path: root/src/test/debug-info/multiple-functions.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/debug-info/multiple-functions.rs')
-rw-r--r--src/test/debug-info/multiple-functions.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/test/debug-info/multiple-functions.rs b/src/test/debug-info/multiple-functions.rs
index 29d67c17684..f5abe6e249d 100644
--- a/src/test/debug-info/multiple-functions.rs
+++ b/src/test/debug-info/multiple-functions.rs
@@ -31,26 +31,26 @@
 #[allow(unused_variable)];
 
 fn function_one() {
-	let a = 10101;
-	zzz();
+    let a = 10101;
+    zzz();
 }
 
 fn function_two() {
-	let b = 20202;
-	zzz();
+    let b = 20202;
+    zzz();
 }
 
 
 fn function_three() {
-	let c = 30303;
-	zzz();
+    let c = 30303;
+    zzz();
 }
 
 
 fn main() {
-	function_one();
-	function_two();
-	function_three();
+    function_one();
+    function_two();
+    function_three();
 }
 
 fn zzz() {()}