about summary refs log tree commit diff
path: root/src/test/compile-fail/refutable-pattern-in-fn-arg.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/refutable-pattern-in-fn-arg.rs')
-rw-r--r--src/test/compile-fail/refutable-pattern-in-fn-arg.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/compile-fail/refutable-pattern-in-fn-arg.rs b/src/test/compile-fail/refutable-pattern-in-fn-arg.rs
index 5e157c1bd7b..957925709e1 100644
--- a/src/test/compile-fail/refutable-pattern-in-fn-arg.rs
+++ b/src/test/compile-fail/refutable-pattern-in-fn-arg.rs
@@ -12,4 +12,3 @@ fn main() {
     let f = |3: int| io::println("hello");  //~ ERROR refutable pattern
     f(4);
 }
-