]> git.lizzy.rs Git - rust.git/blob - tests/ui/print.stderr
Merge pull request #3269 from rust-lang-nursery/relicense
[rust.git] / tests / ui / print.stderr
1 error: use of `Debug`-based formatting
2   --> $DIR/print.rs:23:19
3    |
4 23 |         write!(f, "{:?}", 43.1415)
5    |                   ^^^^^^
6    |
7    = note: `-D clippy::use-debug` implied by `-D warnings`
8
9 error: use of `Debug`-based formatting
10   --> $DIR/print.rs:30:19
11    |
12 30 |         write!(f, "{:?}", 42.718)
13    |                   ^^^^^^
14
15 error: use of `println!`
16   --> $DIR/print.rs:35:5
17    |
18 35 |     println!("Hello");
19    |     ^^^^^^^^^^^^^^^^^
20    |
21    = note: `-D clippy::print-stdout` implied by `-D warnings`
22
23 error: use of `print!`
24   --> $DIR/print.rs:36:5
25    |
26 36 |     print!("Hello");
27    |     ^^^^^^^^^^^^^^^
28
29 error: use of `print!`
30   --> $DIR/print.rs:38:5
31    |
32 38 |     print!("Hello {}", "World");
33    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
34
35 error: use of `print!`
36   --> $DIR/print.rs:40:5
37    |
38 40 |     print!("Hello {:?}", "World");
39    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
40
41 error: use of `Debug`-based formatting
42   --> $DIR/print.rs:40:12
43    |
44 40 |     print!("Hello {:?}", "World");
45    |            ^^^^^^^^^^^^
46
47 error: use of `print!`
48   --> $DIR/print.rs:42:5
49    |
50 42 |     print!("Hello {:#?}", "#orld");
51    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
52
53 error: use of `Debug`-based formatting
54   --> $DIR/print.rs:42:12
55    |
56 42 |     print!("Hello {:#?}", "#orld");
57    |            ^^^^^^^^^^^^^
58
59 error: aborting due to 9 previous errors
60