|
1 | 1 | error: using `self.to_string` in `fmt::Display` implementation will cause infinite recursion
|
2 |
| - --> $DIR/recursive_format_impl.rs:29:25 |
| 2 | + --> $DIR/recursive_format_impl.rs:30:25 |
3 | 3 | |
|
4 | 4 | LL | write!(f, "{}", self.to_string())
|
5 | 5 | | ^^^^^^^^^^^^^^^^
|
6 | 6 | |
|
7 | 7 | = note: `-D clippy::recursive-format-impl` implied by `-D warnings`
|
8 | 8 |
|
9 | 9 | error: using `self` as `Display` in `impl Display` will cause infinite recursion
|
10 |
| - --> $DIR/recursive_format_impl.rs:73:9 |
| 10 | + --> $DIR/recursive_format_impl.rs:74:9 |
11 | 11 | |
|
12 | 12 | LL | write!(f, "{}", self)
|
13 | 13 | | ^^^^^^^^^^^^^^^^^^^^^
|
14 | 14 | |
|
15 | 15 | = note: this error originates in the macro `write` (in Nightly builds, run with -Z macro-backtrace for more info)
|
16 | 16 |
|
17 | 17 | error: using `self` as `Display` in `impl Display` will cause infinite recursion
|
18 |
| - --> $DIR/recursive_format_impl.rs:82:9 |
| 18 | + --> $DIR/recursive_format_impl.rs:83:9 |
19 | 19 | |
|
20 | 20 | LL | write!(f, "{}", &self)
|
21 | 21 | | ^^^^^^^^^^^^^^^^^^^^^^
|
22 | 22 | |
|
23 | 23 | = note: this error originates in the macro `write` (in Nightly builds, run with -Z macro-backtrace for more info)
|
24 | 24 |
|
25 | 25 | error: using `self` as `Debug` in `impl Debug` will cause infinite recursion
|
26 |
| - --> $DIR/recursive_format_impl.rs:88:9 |
| 26 | + --> $DIR/recursive_format_impl.rs:89:9 |
27 | 27 | |
|
28 | 28 | LL | write!(f, "{:?}", &self)
|
29 | 29 | | ^^^^^^^^^^^^^^^^^^^^^^^^
|
30 | 30 | |
|
31 | 31 | = note: this error originates in the macro `write` (in Nightly builds, run with -Z macro-backtrace for more info)
|
32 | 32 |
|
33 | 33 | error: using `self` as `Display` in `impl Display` will cause infinite recursion
|
34 |
| - --> $DIR/recursive_format_impl.rs:97:9 |
| 34 | + --> $DIR/recursive_format_impl.rs:98:9 |
35 | 35 | |
|
36 | 36 | LL | write!(f, "{}", &&&self)
|
37 | 37 | | ^^^^^^^^^^^^^^^^^^^^^^^^
|
38 | 38 | |
|
39 | 39 | = note: this error originates in the macro `write` (in Nightly builds, run with -Z macro-backtrace for more info)
|
40 | 40 |
|
41 | 41 | error: using `self` as `Display` in `impl Display` will cause infinite recursion
|
42 |
| - --> $DIR/recursive_format_impl.rs:171:9 |
| 42 | + --> $DIR/recursive_format_impl.rs:172:9 |
43 | 43 | |
|
44 | 44 | LL | write!(f, "{}", &*self)
|
45 | 45 | | ^^^^^^^^^^^^^^^^^^^^^^^
|
46 | 46 | |
|
47 | 47 | = note: this error originates in the macro `write` (in Nightly builds, run with -Z macro-backtrace for more info)
|
48 | 48 |
|
49 | 49 | error: using `self` as `Debug` in `impl Debug` will cause infinite recursion
|
50 |
| - --> $DIR/recursive_format_impl.rs:177:9 |
| 50 | + --> $DIR/recursive_format_impl.rs:178:9 |
51 | 51 | |
|
52 | 52 | LL | write!(f, "{:?}", &*self)
|
53 | 53 | | ^^^^^^^^^^^^^^^^^^^^^^^^^
|
54 | 54 | |
|
55 | 55 | = note: this error originates in the macro `write` (in Nightly builds, run with -Z macro-backtrace for more info)
|
56 | 56 |
|
57 | 57 | error: using `self` as `Display` in `impl Display` will cause infinite recursion
|
58 |
| - --> $DIR/recursive_format_impl.rs:193:9 |
| 58 | + --> $DIR/recursive_format_impl.rs:194:9 |
59 | 59 | |
|
60 | 60 | LL | write!(f, "{}", *self)
|
61 | 61 | | ^^^^^^^^^^^^^^^^^^^^^^
|
62 | 62 | |
|
63 | 63 | = note: this error originates in the macro `write` (in Nightly builds, run with -Z macro-backtrace for more info)
|
64 | 64 |
|
65 | 65 | error: using `self` as `Display` in `impl Display` will cause infinite recursion
|
66 |
| - --> $DIR/recursive_format_impl.rs:209:9 |
| 66 | + --> $DIR/recursive_format_impl.rs:210:9 |
67 | 67 | |
|
68 | 68 | LL | write!(f, "{}", **&&*self)
|
69 | 69 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
70 | 70 | |
|
71 | 71 | = note: this error originates in the macro `write` (in Nightly builds, run with -Z macro-backtrace for more info)
|
72 | 72 |
|
73 | 73 | error: using `self` as `Display` in `impl Display` will cause infinite recursion
|
74 |
| - --> $DIR/recursive_format_impl.rs:225:9 |
| 74 | + --> $DIR/recursive_format_impl.rs:226:9 |
75 | 75 | |
|
76 | 76 | LL | write!(f, "{}", &&**&&*self)
|
77 | 77 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
0 commit comments