about summary refs log tree commit diff
path: root/src/test/compile-fail/liveness-uninit.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/liveness-uninit.rs')
-rw-r--r--src/test/compile-fail/liveness-uninit.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/compile-fail/liveness-uninit.rs b/src/test/compile-fail/liveness-uninit.rs
index 8797132fd50..a360f8e85a6 100644
--- a/src/test/compile-fail/liveness-uninit.rs
+++ b/src/test/compile-fail/liveness-uninit.rs
@@ -11,6 +11,6 @@
 fn foo(x: int) { debug!(x); }
 
 fn main() {
-	let x: int;
-	foo(x); //~ ERROR use of possibly uninitialized variable: `x`
+    let x: int;
+    foo(x); //~ ERROR use of possibly uninitialized variable: `x`
 }