]> git.lizzy.rs Git - rust.git/blob - clippy_tests/examples/print.stderr
Fix the test suite after cargo update
[rust.git] / clippy_tests / examples / print.stderr
1 error: use of `Debug`-based formatting
2   --> print.rs:12:27
3    |
4 12 |         write!(f, "{:?}", 43.1415)
5    |                           ^^^^^^^
6    |
7    = note: `-D use-debug` implied by `-D warnings`
8
9 error: use of `println!`
10   --> print.rs:24:5
11    |
12 24 |     println!("Hello");
13    |     ^^^^^^^^^^^^^^^^^^
14    |
15    = note: `-D print-stdout` implied by `-D warnings`
16
17 error: use of `print!`
18   --> print.rs:25:5
19    |
20 25 |     print!("Hello");
21    |     ^^^^^^^^^^^^^^^^
22    |
23    = note: `-D print-stdout` implied by `-D warnings`
24
25 error: use of `print!`
26   --> print.rs:27:5
27    |
28 27 |     print!("Hello {}", "World");
29    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
30    |
31    = note: `-D print-stdout` implied by `-D warnings`
32
33 error: use of `print!`
34   --> print.rs:29:5
35    |
36 29 |     print!("Hello {:?}", "World");
37    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
38    |
39    = note: `-D print-stdout` implied by `-D warnings`
40
41 error: use of `Debug`-based formatting
42   --> print.rs:29:26
43    |
44 29 |     print!("Hello {:?}", "World");
45    |                          ^^^^^^^
46    |
47    = note: `-D use-debug` implied by `-D warnings`
48
49 error: use of `print!`
50   --> print.rs:31:5
51    |
52 31 |     print!("Hello {:#?}", "#orld");
53    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
54    |
55    = note: `-D print-stdout` implied by `-D warnings`
56
57 error: use of `Debug`-based formatting
58   --> print.rs:31:27
59    |
60 31 |     print!("Hello {:#?}", "#orld");
61    |                           ^^^^^^^
62    |
63    = note: `-D use-debug` implied by `-D warnings`
64
65 error: aborting due to previous error(s)
66
67
68 To learn more, run the command again with --verbose.