2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::explicit_write)]
|
2022-10-02 19:13:22 +00:00
|
|
|
#![allow(unused_imports)]
|
|
|
|
#![allow(clippy::uninlined_format_args)]
|
2017-10-12 06:18:43 +00:00
|
|
|
|
|
|
|
fn stdout() -> String {
|
|
|
|
String::new()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn stderr() -> String {
|
|
|
|
String::new()
|
|
|
|
}
|
|
|
|
|
2022-01-28 14:58:14 +00:00
|
|
|
macro_rules! one {
|
|
|
|
() => {
|
|
|
|
1
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-10-12 06:18:43 +00:00
|
|
|
fn main() {
|
|
|
|
// these should warn
|
|
|
|
{
|
|
|
|
use std::io::Write;
|
|
|
|
write!(std::io::stdout(), "test").unwrap();
|
|
|
|
write!(std::io::stderr(), "test").unwrap();
|
|
|
|
writeln!(std::io::stdout(), "test").unwrap();
|
|
|
|
writeln!(std::io::stderr(), "test").unwrap();
|
|
|
|
std::io::stdout().write_fmt(format_args!("test")).unwrap();
|
|
|
|
std::io::stderr().write_fmt(format_args!("test")).unwrap();
|
2018-11-23 07:18:23 +00:00
|
|
|
|
|
|
|
// including newlines
|
|
|
|
writeln!(std::io::stdout(), "test\ntest").unwrap();
|
|
|
|
writeln!(std::io::stderr(), "test\ntest").unwrap();
|
2022-01-28 14:58:14 +00:00
|
|
|
|
|
|
|
let value = 1;
|
|
|
|
writeln!(std::io::stderr(), "with {}", value).unwrap();
|
|
|
|
writeln!(std::io::stderr(), "with {} {}", 2, value).unwrap();
|
|
|
|
writeln!(std::io::stderr(), "with {value}").unwrap();
|
|
|
|
writeln!(std::io::stderr(), "macro arg {}", one!()).unwrap();
|
2022-09-12 11:34:09 +00:00
|
|
|
let width = 2;
|
|
|
|
writeln!(std::io::stderr(), "{:w$}", value, w = width).unwrap();
|
2017-10-12 06:18:43 +00:00
|
|
|
}
|
|
|
|
// these should not warn, different destination
|
|
|
|
{
|
|
|
|
use std::fmt::Write;
|
|
|
|
let mut s = String::new();
|
|
|
|
write!(s, "test").unwrap();
|
|
|
|
write!(s, "test").unwrap();
|
|
|
|
writeln!(s, "test").unwrap();
|
|
|
|
writeln!(s, "test").unwrap();
|
|
|
|
s.write_fmt(format_args!("test")).unwrap();
|
|
|
|
s.write_fmt(format_args!("test")).unwrap();
|
|
|
|
write!(stdout(), "test").unwrap();
|
|
|
|
write!(stderr(), "test").unwrap();
|
|
|
|
writeln!(stdout(), "test").unwrap();
|
|
|
|
writeln!(stderr(), "test").unwrap();
|
|
|
|
stdout().write_fmt(format_args!("test")).unwrap();
|
|
|
|
stderr().write_fmt(format_args!("test")).unwrap();
|
|
|
|
}
|
|
|
|
// these should not warn, no unwrap
|
|
|
|
{
|
|
|
|
use std::io::Write;
|
|
|
|
std::io::stdout().write_fmt(format_args!("test")).expect("no stdout");
|
|
|
|
std::io::stderr().write_fmt(format_args!("test")).expect("no stderr");
|
|
|
|
}
|
|
|
|
}
|