Update .stderr after rebase

This commit is contained in:
Philipp Hansch 2018-12-12 07:33:23 +01:00
parent 499aad1e04
commit 194acaf8e7
No known key found for this signature in database
GPG key ID: B6FA06A6E0E2665B

View file

@ -1,51 +1,51 @@
error: use of `write!(stdout(), ...).unwrap()`
--> $DIR/explicit_write.rs:28:9
--> $DIR/explicit_write.rs:24:9
|
28 | write!(std::io::stdout(), "test").unwrap();
24 | write!(std::io::stdout(), "test").unwrap();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `print!("test")`
|
= note: `-D clippy::explicit-write` implied by `-D warnings`
error: use of `write!(stderr(), ...).unwrap()`
--> $DIR/explicit_write.rs:29:9
--> $DIR/explicit_write.rs:25:9
|
29 | write!(std::io::stderr(), "test").unwrap();
25 | write!(std::io::stderr(), "test").unwrap();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `eprint!("test")`
error: use of `writeln!(stdout(), ...).unwrap()`
--> $DIR/explicit_write.rs:30:9
--> $DIR/explicit_write.rs:26:9
|
30 | writeln!(std::io::stdout(), "test").unwrap();
26 | writeln!(std::io::stdout(), "test").unwrap();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `println!("test")`
error: use of `writeln!(stderr(), ...).unwrap()`
--> $DIR/explicit_write.rs:31:9
--> $DIR/explicit_write.rs:27:9
|
31 | writeln!(std::io::stderr(), "test").unwrap();
27 | writeln!(std::io::stderr(), "test").unwrap();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `eprintln!("test")`
error: use of `stdout().write_fmt(...).unwrap()`
--> $DIR/explicit_write.rs:32:9
--> $DIR/explicit_write.rs:28:9
|
32 | std::io::stdout().write_fmt(format_args!("test")).unwrap();
28 | std::io::stdout().write_fmt(format_args!("test")).unwrap();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `print!("test")`
error: use of `stderr().write_fmt(...).unwrap()`
--> $DIR/explicit_write.rs:33:9
--> $DIR/explicit_write.rs:29:9
|
33 | std::io::stderr().write_fmt(format_args!("test")).unwrap();
29 | std::io::stderr().write_fmt(format_args!("test")).unwrap();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `eprint!("test")`
error: use of `writeln!(stdout(), ...).unwrap()`
--> $DIR/explicit_write.rs:36:9
--> $DIR/explicit_write.rs:32:9
|
36 | writeln!(std::io::stdout(), "test/ntest").unwrap();
32 | writeln!(std::io::stdout(), "test/ntest").unwrap();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `println!("test/ntest")`
error: use of `writeln!(stderr(), ...).unwrap()`
--> $DIR/explicit_write.rs:37:9
--> $DIR/explicit_write.rs:33:9
|
37 | writeln!(std::io::stderr(), "test/ntest").unwrap();
33 | writeln!(std::io::stderr(), "test/ntest").unwrap();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `eprintln!("test/ntest")`
error: aborting due to 8 previous errors