about summary refs log tree commit diff
path: root/tests/ui/duplicate_underscore_argument.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/duplicate_underscore_argument.rs')
-rw-r--r--tests/ui/duplicate_underscore_argument.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/ui/duplicate_underscore_argument.rs b/tests/ui/duplicate_underscore_argument.rs
index cb4930363e8..b71f5a20a84 100644
--- a/tests/ui/duplicate_underscore_argument.rs
+++ b/tests/ui/duplicate_underscore_argument.rs
@@ -3,7 +3,6 @@
 fn join_the_dark_side(darth: i32, _darth: i32) {}
 //~^ duplicate_underscore_argument
 
-
 fn join_the_light_side(knight: i32, _master: i32) {} // the Force is strong with this one
 
 fn main() {