]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/println_empty_string.fixed
Auto merge of #71751 - oli-obk:const_ice, r=RalfJung
[rust.git] / src / tools / clippy / tests / ui / println_empty_string.fixed
1 // run-rustfix
2 #![allow(clippy::match_single_binding)]
3
4 fn main() {
5     println!();
6     println!();
7
8     match "a" {
9         _ => println!(),
10     }
11 }