diff options
| author | Dylan DPC <dylan.dpc@gmail.com> | 2020-12-21 02:47:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-21 02:47:47 +0100 |
| commit | ce93f5a8bb46208e41e0855c96e12a5ff8dd0f4e (patch) | |
| tree | b1a144ecc483ae05f73dfb3b51899519917e5349 /src/tools/clippy/tests/ui/println_empty_string.fixed | |
| parent | 328e89c022b9d24ad435038e0b51bf85f47234bd (diff) | |
| parent | 520761afa55cab0f59229ecb11a9377864275427 (diff) | |
| download | rust-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.fixed | 7 |
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!(), + } } |
