]> git.lizzy.rs Git - rust.git/blob - tests/ui/format_args.stderr
Add `format_in_format_args` and `to_string_in_format_args` lints
[rust.git] / tests / ui / format_args.stderr
1 error: `to_string` applied to a type that implements `Display` in `format!` args
2   --> $DIR/format_args.rs:75:72
3    |
4 LL |     let _ = format!("error: something failed at {}", Location::caller().to_string());
5    |                                                                        ^^^^^^^^^^^^ help: remove this
6    |
7    = note: `-D clippy::to-string-in-format-args` implied by `-D warnings`
8
9 error: `to_string` applied to a type that implements `Display` in `write!` args
10   --> $DIR/format_args.rs:79:27
11    |
12 LL |         Location::caller().to_string()
13    |                           ^^^^^^^^^^^^ help: remove this
14
15 error: `to_string` applied to a type that implements `Display` in `writeln!` args
16   --> $DIR/format_args.rs:84:27
17    |
18 LL |         Location::caller().to_string()
19    |                           ^^^^^^^^^^^^ help: remove this
20
21 error: `to_string` applied to a type that implements `Display` in `print!` args
22   --> $DIR/format_args.rs:86:63
23    |
24 LL |     print!("error: something failed at {}", Location::caller().to_string());
25    |                                                               ^^^^^^^^^^^^ help: remove this
26
27 error: `to_string` applied to a type that implements `Display` in `println!` args
28   --> $DIR/format_args.rs:87:65
29    |
30 LL |     println!("error: something failed at {}", Location::caller().to_string());
31    |                                                                 ^^^^^^^^^^^^ help: remove this
32
33 error: `to_string` applied to a type that implements `Display` in `eprint!` args
34   --> $DIR/format_args.rs:88:64
35    |
36 LL |     eprint!("error: something failed at {}", Location::caller().to_string());
37    |                                                                ^^^^^^^^^^^^ help: remove this
38
39 error: `to_string` applied to a type that implements `Display` in `eprintln!` args
40   --> $DIR/format_args.rs:89:66
41    |
42 LL |     eprintln!("error: something failed at {}", Location::caller().to_string());
43    |                                                                  ^^^^^^^^^^^^ help: remove this
44
45 error: `to_string` applied to a type that implements `Display` in `format_args!` args
46   --> $DIR/format_args.rs:90:77
47    |
48 LL |     let _ = format_args!("error: something failed at {}", Location::caller().to_string());
49    |                                                                             ^^^^^^^^^^^^ help: remove this
50
51 error: `to_string` applied to a type that implements `Display` in `assert!` args
52   --> $DIR/format_args.rs:91:70
53    |
54 LL |     assert!(true, "error: something failed at {}", Location::caller().to_string());
55    |                                                                      ^^^^^^^^^^^^ help: remove this
56
57 error: `to_string` applied to a type that implements `Display` in `assert_eq!` args
58   --> $DIR/format_args.rs:92:73
59    |
60 LL |     assert_eq!(0, 0, "error: something failed at {}", Location::caller().to_string());
61    |                                                                         ^^^^^^^^^^^^ help: remove this
62
63 error: `to_string` applied to a type that implements `Display` in `assert_ne!` args
64   --> $DIR/format_args.rs:93:73
65    |
66 LL |     assert_ne!(0, 0, "error: something failed at {}", Location::caller().to_string());
67    |                                                                         ^^^^^^^^^^^^ help: remove this
68
69 error: `to_string` applied to a type that implements `Display` in `panic!` args
70   --> $DIR/format_args.rs:94:63
71    |
72 LL |     panic!("error: something failed at {}", Location::caller().to_string());
73    |                                                               ^^^^^^^^^^^^ help: remove this
74
75 error: `to_string` applied to a type that implements `Display` in `println!` args
76   --> $DIR/format_args.rs:95:20
77    |
78 LL |     println!("{}", X(1).to_string());
79    |                    ^^^^^^^^^^^^^^^^ help: use this: `*X(1)`
80
81 error: `to_string` applied to a type that implements `Display` in `println!` args
82   --> $DIR/format_args.rs:96:20
83    |
84 LL |     println!("{}", Y(&X(1)).to_string());
85    |                    ^^^^^^^^^^^^^^^^^^^^ help: use this: `***Y(&X(1))`
86
87 error: `to_string` applied to a type that implements `Display` in `println!` args
88   --> $DIR/format_args.rs:97:24
89    |
90 LL |     println!("{}", Z(1).to_string());
91    |                        ^^^^^^^^^^^^ help: remove this
92
93 error: `to_string` applied to a type that implements `Display` in `println!` args
94   --> $DIR/format_args.rs:98:20
95    |
96 LL |     println!("{}", x.to_string());
97    |                    ^^^^^^^^^^^^^ help: use this: `**x`
98
99 error: `to_string` applied to a type that implements `Display` in `println!` args
100   --> $DIR/format_args.rs:99:20
101    |
102 LL |     println!("{}", x_ref.to_string());
103    |                    ^^^^^^^^^^^^^^^^^ help: use this: `***x_ref`
104
105 error: aborting due to 17 previous errors
106