2019-05-23 18:11:38 +00:00
|
|
|
error: using `print!()` with a format string that ends in a single newline
|
|
|
|
--> $DIR/print_with_newline.rs:8:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | print!("Hello/n");
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::print-with-newline` implied by `-D warnings`
|
2019-05-23 18:11:38 +00:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - print!("Hello/n");
|
|
|
|
LL + println!("Hello");
|
2022-06-15 11:15:54 +00:00
|
|
|
|
|
2017-09-29 17:13:21 +00:00
|
|
|
|
2019-05-23 18:11:38 +00:00
|
|
|
error: using `print!()` with a format string that ends in a single newline
|
|
|
|
--> $DIR/print_with_newline.rs:9:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | print!("Hello {}/n", "world");
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-05-23 18:11:38 +00:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - print!("Hello {}/n", "world");
|
|
|
|
LL + println!("Hello {}", "world");
|
2022-06-15 11:15:54 +00:00
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
|
2019-05-23 18:11:38 +00:00
|
|
|
error: using `print!()` with a format string that ends in a single newline
|
|
|
|
--> $DIR/print_with_newline.rs:10:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | print!("Hello {} {}/n", "world", "#2");
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-05-23 18:11:38 +00:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - print!("Hello {} {}/n", "world", "#2");
|
|
|
|
LL + println!("Hello {} {}", "world", "#2");
|
2022-06-15 11:15:54 +00:00
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
|
2019-05-23 18:11:38 +00:00
|
|
|
error: using `print!()` with a format string that ends in a single newline
|
|
|
|
--> $DIR/print_with_newline.rs:11:5
|
2018-07-22 22:19:07 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | print!("{}/n", 1265);
|
2018-07-22 22:19:07 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-05-23 18:11:38 +00:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - print!("{}/n", 1265);
|
|
|
|
LL + println!("{}", 1265);
|
2022-06-15 11:15:54 +00:00
|
|
|
|
|
2018-07-22 22:19:07 +00:00
|
|
|
|
2019-05-23 18:11:38 +00:00
|
|
|
error: using `print!()` with a format string that ends in a single newline
|
2020-09-24 12:49:22 +00:00
|
|
|
--> $DIR/print_with_newline.rs:12:5
|
|
|
|
|
|
|
|
|
LL | print!("/n");
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - print!("/n");
|
|
|
|
LL + println!();
|
2022-06-15 11:15:54 +00:00
|
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
|
|
|
|
error: using `print!()` with a format string that ends in a single newline
|
|
|
|
--> $DIR/print_with_newline.rs:31:5
|
2019-02-18 03:32:58 +00:00
|
|
|
|
|
|
|
|
LL | print!("//n"); // should fail
|
|
|
|
| ^^^^^^^^^^^^^^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-05-23 18:11:38 +00:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - print!("//n"); // should fail
|
|
|
|
LL + println!("/"); // should fail
|
2022-06-15 11:15:54 +00:00
|
|
|
|
|
2019-02-18 03:32:58 +00:00
|
|
|
|
2019-05-23 18:11:38 +00:00
|
|
|
error: using `print!()` with a format string that ends in a single newline
|
2020-09-24 12:49:22 +00:00
|
|
|
--> $DIR/print_with_newline.rs:38:5
|
2019-02-18 16:39:23 +00:00
|
|
|
|
|
|
|
|
LL | / print!(
|
|
|
|
LL | | "
|
|
|
|
LL | | "
|
|
|
|
LL | | );
|
|
|
|
| |_____^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-05-23 18:11:38 +00:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ println!(
|
|
|
|
LL ~ ""
|
2019-05-23 18:11:38 +00:00
|
|
|
|
|
2019-02-18 16:39:23 +00:00
|
|
|
|
2019-05-23 18:11:38 +00:00
|
|
|
error: using `print!()` with a format string that ends in a single newline
|
2020-09-24 12:49:22 +00:00
|
|
|
--> $DIR/print_with_newline.rs:42:5
|
2019-02-18 16:39:23 +00:00
|
|
|
|
|
|
|
|
LL | / print!(
|
|
|
|
LL | | r"
|
|
|
|
LL | | "
|
|
|
|
LL | | );
|
|
|
|
| |_____^
|
2019-10-26 19:53:42 +00:00
|
|
|
|
|
2019-05-23 18:11:38 +00:00
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL ~ println!(
|
|
|
|
LL ~ r""
|
2019-05-23 18:11:38 +00:00
|
|
|
|
|
2019-02-18 16:39:23 +00:00
|
|
|
|
2019-11-03 04:41:22 +00:00
|
|
|
error: using `print!()` with a format string that ends in a single newline
|
2020-09-24 12:49:22 +00:00
|
|
|
--> $DIR/print_with_newline.rs:50:5
|
2019-11-03 04:41:22 +00:00
|
|
|
|
|
|
|
|
LL | print!("/r/n"); //~ ERROR
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - print!("/r/n"); //~ ERROR
|
|
|
|
LL + println!("/r"); //~ ERROR
|
2022-06-15 11:15:54 +00:00
|
|
|
|
|
2019-11-03 04:41:22 +00:00
|
|
|
|
|
|
|
error: using `print!()` with a format string that ends in a single newline
|
2020-09-24 12:49:22 +00:00
|
|
|
--> $DIR/print_with_newline.rs:51:5
|
2019-11-03 04:41:22 +00:00
|
|
|
|
|
|
|
|
LL | print!("foo/rbar/n") // ~ ERROR
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: use `println!` instead
|
|
|
|
|
|
2021-08-11 14:21:33 +00:00
|
|
|
LL - print!("foo/rbar/n") // ~ ERROR
|
|
|
|
LL + println!("foo/rbar") // ~ ERROR
|
2022-06-15 11:15:54 +00:00
|
|
|
|
|
2019-11-03 04:41:22 +00:00
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
error: aborting due to 10 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|