@@ -4,7 +4,6 @@ error[E0277]: `impl Sized` doesn't implement `std::fmt::Debug`
44LL | println!("{:?}", t);
55 | ^ `impl Sized` cannot be formatted using `{:?}` because it doesn't implement `std::fmt::Debug`
66 |
7- = help: the trait `std::fmt::Debug` is not implemented for `impl Sized`
87 = note: required by `std::fmt::Debug::fmt`
98 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
109help: consider further restricting this bound
@@ -18,7 +17,6 @@ error[E0277]: `T` doesn't implement `std::fmt::Debug`
1817LL | println!("{:?}", t);
1918 | ^ `T` cannot be formatted using `{:?}` because it doesn't implement `std::fmt::Debug`
2019 |
21- = help: the trait `std::fmt::Debug` is not implemented for `T`
2220 = note: required by `std::fmt::Debug::fmt`
2321 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
2422help: consider restricting type parameter `T`
@@ -32,7 +30,6 @@ error[E0277]: `T` doesn't implement `std::fmt::Debug`
3230LL | println!("{:?}", t);
3331 | ^ `T` cannot be formatted using `{:?}` because it doesn't implement `std::fmt::Debug`
3432 |
35- = help: the trait `std::fmt::Debug` is not implemented for `T`
3633 = note: required by `std::fmt::Debug::fmt`
3734 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
3835help: consider further restricting this bound
@@ -46,7 +43,6 @@ error[E0277]: `Y` doesn't implement `std::fmt::Debug`
4643LL | println!("{:?} {:?}", x, y);
4744 | ^ `Y` cannot be formatted using `{:?}` because it doesn't implement `std::fmt::Debug`
4845 |
49- = help: the trait `std::fmt::Debug` is not implemented for `Y`
5046 = note: required by `std::fmt::Debug::fmt`
5147 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
5248help: consider further restricting type parameter `Y`
@@ -60,7 +56,6 @@ error[E0277]: `X` doesn't implement `std::fmt::Debug`
6056LL | println!("{:?}", x);
6157 | ^ `X` cannot be formatted using `{:?}` because it doesn't implement `std::fmt::Debug`
6258 |
63- = help: the trait `std::fmt::Debug` is not implemented for `X`
6459 = note: required by `std::fmt::Debug::fmt`
6560 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
6661help: consider further restricting this bound
@@ -74,7 +69,6 @@ error[E0277]: `X` doesn't implement `std::fmt::Debug`
7469LL | println!("{:?}", x);
7570 | ^ `X` cannot be formatted using `{:?}` because it doesn't implement `std::fmt::Debug`
7671 |
77- = help: the trait `std::fmt::Debug` is not implemented for `X`
7872 = note: required by `std::fmt::Debug::fmt`
7973 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
8074help: consider further restricting type parameter `X`
0 commit comments