summary refs log tree commit diff
path: root/src/test/run-pass/struct-pattern-matching.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/struct-pattern-matching.rs')
-rw-r--r--src/test/run-pass/struct-pattern-matching.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/test/run-pass/struct-pattern-matching.rs b/src/test/run-pass/struct-pattern-matching.rs
index 1d7bcb2585f..1bda2d2412d 100644
--- a/src/test/run-pass/struct-pattern-matching.rs
+++ b/src/test/run-pass/struct-pattern-matching.rs
@@ -19,6 +19,3 @@ pub fn main() {
         Foo { x: x, y: y } => io::println(fmt!("yes, %d, %d", x, y))
     }
 }
-
-
-