@@ -4,7 +4,6 @@ error[E0277]: `impl Sized` doesn't implement `Debug`
4
4
LL | println!("{:?}", t);
5
5
| ^ `impl Sized` cannot be formatted using `{:?}` because it doesn't implement `Debug`
6
6
|
7
- = note: required by `std::fmt::Debug::fmt`
8
7
= note: this error originates in the macro `$crate::format_args_nl` (in Nightly builds, run with -Z macro-backtrace for more info)
9
8
help: consider further restricting this bound
10
9
|
@@ -17,7 +16,6 @@ error[E0277]: `T` doesn't implement `Debug`
17
16
LL | println!("{:?}", t);
18
17
| ^ `T` cannot be formatted using `{:?}` because it doesn't implement `Debug`
19
18
|
20
- = note: required by `std::fmt::Debug::fmt`
21
19
= note: this error originates in the macro `$crate::format_args_nl` (in Nightly builds, run with -Z macro-backtrace for more info)
22
20
help: consider restricting type parameter `T`
23
21
|
@@ -30,7 +28,6 @@ error[E0277]: `T` doesn't implement `Debug`
30
28
LL | println!("{:?}", t);
31
29
| ^ `T` cannot be formatted using `{:?}` because it doesn't implement `Debug`
32
30
|
33
- = note: required by `std::fmt::Debug::fmt`
34
31
= note: this error originates in the macro `$crate::format_args_nl` (in Nightly builds, run with -Z macro-backtrace for more info)
35
32
help: consider further restricting this bound
36
33
|
@@ -43,7 +40,6 @@ error[E0277]: `Y` doesn't implement `Debug`
43
40
LL | println!("{:?} {:?}", x, y);
44
41
| ^ `Y` cannot be formatted using `{:?}` because it doesn't implement `Debug`
45
42
|
46
- = note: required by `std::fmt::Debug::fmt`
47
43
= note: this error originates in the macro `$crate::format_args_nl` (in Nightly builds, run with -Z macro-backtrace for more info)
48
44
help: consider further restricting type parameter `Y`
49
45
|
@@ -56,7 +52,6 @@ error[E0277]: `X` doesn't implement `Debug`
56
52
LL | println!("{:?}", x);
57
53
| ^ `X` cannot be formatted using `{:?}` because it doesn't implement `Debug`
58
54
|
59
- = note: required by `std::fmt::Debug::fmt`
60
55
= note: this error originates in the macro `$crate::format_args_nl` (in Nightly builds, run with -Z macro-backtrace for more info)
61
56
help: consider further restricting this bound
62
57
|
@@ -69,7 +64,6 @@ error[E0277]: `X` doesn't implement `Debug`
69
64
LL | println!("{:?}", x);
70
65
| ^ `X` cannot be formatted using `{:?}` because it doesn't implement `Debug`
71
66
|
72
- = note: required by `std::fmt::Debug::fmt`
73
67
= note: this error originates in the macro `$crate::format_args_nl` (in Nightly builds, run with -Z macro-backtrace for more info)
74
68
help: consider further restricting type parameter `X`
75
69
|
0 commit comments