Sign in
rust
/
rust-clippy
/
62a82b361c02838afdf607d461726e0407f1a5ec
/
.
/
tests
/
ui
/
println_empty_string.fixed
blob: 20811fc753234b2e8c25a1de903b526f109b3165 [
file
] [
log
] [
blame
]
#![allow(clippy::match_single_binding)]
fn main
()
{
println
!();
println
!();
match
"a"
{
_
=>
println
!(),
}
eprintln
!();
eprintln
!();
match
"a"
{
_
=>
eprintln
!(),
}
}