about summary refs log tree commit diff
path: root/tests/ui/threads-sendsync/sendable-class.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/threads-sendsync/sendable-class.rs')
-rw-r--r--tests/ui/threads-sendsync/sendable-class.rs11
1 files changed, 4 insertions, 7 deletions
diff --git a/tests/ui/threads-sendsync/sendable-class.rs b/tests/ui/threads-sendsync/sendable-class.rs
index 3ee1b60a04a..8e5e76d826a 100644
--- a/tests/ui/threads-sendsync/sendable-class.rs
+++ b/tests/ui/threads-sendsync/sendable-class.rs
@@ -11,15 +11,12 @@
 use std::sync::mpsc::channel;
 
 struct foo {
-  i: isize,
-  j: char,
+    i: isize,
+    j: char,
 }
 
-fn foo(i:isize, j: char) -> foo {
-    foo {
-        i: i,
-        j: j
-    }
+fn foo(i: isize, j: char) -> foo {
+    foo { i: i, j: j }
 }
 
 pub fn main() {