]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/explicit_write.stderr
Auto merge of #101846 - chenyukang:fix-101793, r=davidtwco
[rust.git] / src / tools / clippy / tests / ui / explicit_write.stderr
1 error: use of `write!(stdout(), ...).unwrap()`
2   --> $DIR/explicit_write.rs:23:9
3    |
4 LL |         write!(std::io::stdout(), "test").unwrap();
5    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `print!("test")`
6    |
7    = note: `-D clippy::explicit-write` implied by `-D warnings`
8
9 error: use of `write!(stderr(), ...).unwrap()`
10   --> $DIR/explicit_write.rs:24:9
11    |
12 LL |         write!(std::io::stderr(), "test").unwrap();
13    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `eprint!("test")`
14
15 error: use of `writeln!(stdout(), ...).unwrap()`
16   --> $DIR/explicit_write.rs:25:9
17    |
18 LL |         writeln!(std::io::stdout(), "test").unwrap();
19    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `println!("test")`
20
21 error: use of `writeln!(stderr(), ...).unwrap()`
22   --> $DIR/explicit_write.rs:26:9
23    |
24 LL |         writeln!(std::io::stderr(), "test").unwrap();
25    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `eprintln!("test")`
26
27 error: use of `stdout().write_fmt(...).unwrap()`
28   --> $DIR/explicit_write.rs:27:9
29    |
30 LL |         std::io::stdout().write_fmt(format_args!("test")).unwrap();
31    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `print!("test")`
32
33 error: use of `stderr().write_fmt(...).unwrap()`
34   --> $DIR/explicit_write.rs:28:9
35    |
36 LL |         std::io::stderr().write_fmt(format_args!("test")).unwrap();
37    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `eprint!("test")`
38
39 error: use of `writeln!(stdout(), ...).unwrap()`
40   --> $DIR/explicit_write.rs:31:9
41    |
42 LL |         writeln!(std::io::stdout(), "test/ntest").unwrap();
43    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `println!("test/ntest")`
44
45 error: use of `writeln!(stderr(), ...).unwrap()`
46   --> $DIR/explicit_write.rs:32:9
47    |
48 LL |         writeln!(std::io::stderr(), "test/ntest").unwrap();
49    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `eprintln!("test/ntest")`
50
51 error: use of `writeln!(stderr(), ...).unwrap()`
52   --> $DIR/explicit_write.rs:35:9
53    |
54 LL |         writeln!(std::io::stderr(), "with {}", value).unwrap();
55    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `eprintln!("with {}", value)`
56
57 error: use of `writeln!(stderr(), ...).unwrap()`
58   --> $DIR/explicit_write.rs:36:9
59    |
60 LL |         writeln!(std::io::stderr(), "with {} {}", 2, value).unwrap();
61    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `eprintln!("with {} {}", 2, value)`
62
63 error: use of `writeln!(stderr(), ...).unwrap()`
64   --> $DIR/explicit_write.rs:37:9
65    |
66 LL |         writeln!(std::io::stderr(), "with {value}").unwrap();
67    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `eprintln!("with {value}")`
68
69 error: use of `writeln!(stderr(), ...).unwrap()`
70   --> $DIR/explicit_write.rs:38:9
71    |
72 LL |         writeln!(std::io::stderr(), "macro arg {}", one!()).unwrap();
73    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `eprintln!("macro arg {}", one!())`
74
75 error: aborting due to 12 previous errors
76