Sign in
android
/
toolchain
/
rustc
/
cd1aefd586783f162dd848e314bd6991a5ffe033
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
println_empty_string.rs
blob: fd86e2543cc1d23d189f4f1ff3aad033b9fb9f77 [
file
] [
log
] [
blame
]
//@run-rustfix
#![
allow
(
clippy
::
match_single_binding
)]
fn
main
()
{
println
!();
println
!(
""
);
match
"a"
{
_
=>
println
!(
""
),
}
eprintln
!();
eprintln
!(
""
);
match
"a"
{
_
=>
eprintln
!(
""
),
}
}