]> git.lizzy.rs Git - rust.git/blobdiff - clippy_tests/examples/print_with_newline.stderr
Fix the test suite after cargo update
[rust.git] / clippy_tests / examples / print_with_newline.stderr
index 87932a1b27c6c8f0224eace01f773463119bd81d..cae41cb02c07ffafad982a8d5b4b69fb49a79095 100644 (file)
@@ -1,5 +1,5 @@
 error: using `print!()` with a format string that ends in a newline, consider using `println!()` instead
- --> examples/print_with_newline.rs:6:5
+ --> print_with_newline.rs:6:5
   |
 6 |     print!("Hello\n");
   |     ^^^^^^^^^^^^^^^^^^
@@ -7,7 +7,7 @@ error: using `print!()` with a format string that ends in a newline, consider us
   = note: `-D print-with-newline` implied by `-D warnings`
 
 error: using `print!()` with a format string that ends in a newline, consider using `println!()` instead
- --> examples/print_with_newline.rs:7:5
+ --> print_with_newline.rs:7:5
   |
 7 |     print!("Hello {}\n", "world");
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -15,7 +15,7 @@ error: using `print!()` with a format string that ends in a newline, consider us
   = note: `-D print-with-newline` implied by `-D warnings`
 
 error: using `print!()` with a format string that ends in a newline, consider using `println!()` instead
- --> examples/print_with_newline.rs:8:5
+ --> print_with_newline.rs:8:5
   |
 8 |     print!("Hello {} {}\n\n", "world", "#2");
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -23,15 +23,14 @@ error: using `print!()` with a format string that ends in a newline, consider us
   = note: `-D print-with-newline` implied by `-D warnings`
 
 error: using `print!()` with a format string that ends in a newline, consider using `println!()` instead
- --> examples/print_with_newline.rs:9:5
+ --> print_with_newline.rs:9:5
   |
 9 |     print!("{}\n", 1265);
   |     ^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D print-with-newline` implied by `-D warnings`
 
-error: aborting due to 4 previous errors
+error: aborting due to previous error(s)
 
-error: Could not compile `clippy_tests`.
 
 To learn more, run the command again with --verbose.