2019-05-23 20:11:38 +02:00
|
|
|
error: using `print!()` with a format string that ends in a single newline
|
|
|
|
--> $DIR/print_with_newline.rs:8:5
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | print!("Hello/n");
|
2018-10-06 18:18:06 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::print-with-newline` implied by `-D warnings`
|
2019-05-23 20:11:38 +02:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
|
|
|
LL | println!("Hello");
|
|
|
|
| ^^^^^^^ --
|
2017-09-29 19:13:21 +02:00
|
|
|
|
2019-05-23 20:11:38 +02:00
|
|
|
error: using `print!()` with a format string that ends in a single newline
|
|
|
|
--> $DIR/print_with_newline.rs:9:5
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | print!("Hello {}/n", "world");
|
2018-10-06 18:18:06 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-05-23 20:11:38 +02:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
|
|
|
LL | println!("Hello {}", "world");
|
|
|
|
| ^^^^^^^ --
|
2018-07-23 00:19:07 +02:00
|
|
|
|
2019-05-23 20:11:38 +02:00
|
|
|
error: using `print!()` with a format string that ends in a single newline
|
|
|
|
--> $DIR/print_with_newline.rs:10:5
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | print!("Hello {} {}/n", "world", "#2");
|
2018-10-06 18:18:06 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-05-23 20:11:38 +02:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
|
|
|
LL | println!("Hello {} {}", "world", "#2");
|
|
|
|
| ^^^^^^^ --
|
2018-07-23 00:19:07 +02:00
|
|
|
|
2019-05-23 20:11:38 +02:00
|
|
|
error: using `print!()` with a format string that ends in a single newline
|
|
|
|
--> $DIR/print_with_newline.rs:11:5
|
2018-07-23 00:19:07 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | print!("{}/n", 1265);
|
2018-07-23 00:19:07 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2019-05-23 20:11:38 +02:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
|
|
|
LL | println!("{}", 1265);
|
|
|
|
| ^^^^^^^ --
|
2018-07-23 00:19:07 +02:00
|
|
|
|
2019-05-23 20:11:38 +02:00
|
|
|
error: using `print!()` with a format string that ends in a single newline
|
|
|
|
--> $DIR/print_with_newline.rs:30:5
|
2019-02-18 04:32:58 +01:00
|
|
|
|
|
|
|
|
LL | print!("//n"); // should fail
|
|
|
|
| ^^^^^^^^^^^^^^
|
2019-05-23 20:11:38 +02:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
|
|
|
LL | println!("/"); // should fail
|
|
|
|
| ^^^^^^^ --
|
2019-02-18 04:32:58 +01:00
|
|
|
|
2019-05-23 20:11:38 +02:00
|
|
|
error: using `print!()` with a format string that ends in a single newline
|
|
|
|
--> $DIR/print_with_newline.rs:37:5
|
2019-02-18 17:39:23 +01:00
|
|
|
|
|
|
|
|
LL | / print!(
|
|
|
|
LL | | "
|
|
|
|
LL | | "
|
|
|
|
LL | | );
|
|
|
|
| |_____^
|
2019-05-23 20:11:38 +02:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
|
|
|
LL | println!(
|
|
|
|
LL | ""
|
|
|
|
|
|
2019-02-18 17:39:23 +01:00
|
|
|
|
2019-05-23 20:11:38 +02:00
|
|
|
error: using `print!()` with a format string that ends in a single newline
|
|
|
|
--> $DIR/print_with_newline.rs:41:5
|
2019-02-18 17:39:23 +01:00
|
|
|
|
|
|
|
|
LL | / print!(
|
|
|
|
LL | | r"
|
|
|
|
LL | | "
|
|
|
|
LL | | );
|
|
|
|
| |_____^
|
2019-05-23 20:11:38 +02:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
|
|
|
LL | println!(
|
|
|
|
LL | r""
|
|
|
|
|
|
2019-02-18 17:39:23 +01:00
|
|
|
|
|
|
|
error: aborting due to 7 previous errors
|
2018-01-16 17:06:27 +01:00
|
|
|
|