about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/println_empty_string.fixed
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2020-12-21 02:47:47 +0100
committerGitHub <noreply@github.com>2020-12-21 02:47:47 +0100
commitce93f5a8bb46208e41e0855c96e12a5ff8dd0f4e (patch)
treeb1a144ecc483ae05f73dfb3b51899519917e5349 /src/tools/clippy/tests/ui/println_empty_string.fixed
parent328e89c022b9d24ad435038e0b51bf85f47234bd (diff)
parent520761afa55cab0f59229ecb11a9377864275427 (diff)
downloadrust-ce93f5a8bb46208e41e0855c96e12a5ff8dd0f4e.tar.gz
rust-ce93f5a8bb46208e41e0855c96e12a5ff8dd0f4e.zip
Rollup merge of #80239 - flip1995:clippyup, r=Manishearth
Update Clippy

Biweekly Clippy update.

r? ``@Manishearth``
Diffstat (limited to 'src/tools/clippy/tests/ui/println_empty_string.fixed')
-rw-r--r--src/tools/clippy/tests/ui/println_empty_string.fixed7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/println_empty_string.fixed b/src/tools/clippy/tests/ui/println_empty_string.fixed
index 2b889b62ea9..9760680927a 100644
--- a/src/tools/clippy/tests/ui/println_empty_string.fixed
+++ b/src/tools/clippy/tests/ui/println_empty_string.fixed
@@ -8,4 +8,11 @@ fn main() {
     match "a" {
         _ => println!(),
     }
+
+    eprintln!();
+    eprintln!();
+
+    match "a" {
+        _ => eprintln!(),
+    }
 }