Sign in
android
/
toolchain
/
rustc
/
d59a28787b7ba06edbd1e4528a42b66d67dc6a19
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
print_stderr.rs
blob: fa07e74a7be47ef865870592b5e5e72d5dca284a [
file
] [
log
] [
blame
]
#![
warn
(
clippy
::
print_stderr
)]
fn
main
()
{
eprintln
!(
"Hello"
);
println
!(
"This should not do anything"
);
eprint
!(
"World"
);
print
!(
"Nor should this"
);
}