about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/test/run-pass/impl-for-never.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/impl-for-never.rs b/src/test/run-pass/impl-for-never.rs
index 4bb4e0128af..794f5969bff 100644
--- a/src/test/run-pass/impl-for-never.rs
+++ b/src/test/run-pass/impl-for-never.rs
@@ -26,7 +26,7 @@ fn maybe_stringify<T: StringifyType>(opt: Option<T>) -> &'static str {
     match opt {
         Some(_) => T::stringify_type(),
         None => "none",
-    } 
+    }
 }
 
 fn main() {