@@ -4,7 +4,6 @@ error[E0277]: `impl Sized` doesn't implement `Debug`
44LL | println!("{:?}", t);
55 | ^ `impl Sized` cannot be formatted using `{:?}` because it doesn't implement `Debug`
66 |
7- = note: required by `std::fmt::Debug::fmt`
87 = note: this error originates in the macro `$crate::format_args_nl` (in Nightly builds, run with -Z macro-backtrace for more info)
98help: consider further restricting this bound
109 |
@@ -17,7 +16,6 @@ error[E0277]: `T` doesn't implement `Debug`
1716LL | println!("{:?}", t);
1817 | ^ `T` cannot be formatted using `{:?}` because it doesn't implement `Debug`
1918 |
20- = note: required by `std::fmt::Debug::fmt`
2119 = note: this error originates in the macro `$crate::format_args_nl` (in Nightly builds, run with -Z macro-backtrace for more info)
2220help: consider restricting type parameter `T`
2321 |
@@ -30,7 +28,6 @@ error[E0277]: `T` doesn't implement `Debug`
3028LL | println!("{:?}", t);
3129 | ^ `T` cannot be formatted using `{:?}` because it doesn't implement `Debug`
3230 |
33- = note: required by `std::fmt::Debug::fmt`
3431 = note: this error originates in the macro `$crate::format_args_nl` (in Nightly builds, run with -Z macro-backtrace for more info)
3532help: consider further restricting this bound
3633 |
@@ -43,7 +40,6 @@ error[E0277]: `Y` doesn't implement `Debug`
4340LL | println!("{:?} {:?}", x, y);
4441 | ^ `Y` cannot be formatted using `{:?}` because it doesn't implement `Debug`
4542 |
46- = note: required by `std::fmt::Debug::fmt`
4743 = note: this error originates in the macro `$crate::format_args_nl` (in Nightly builds, run with -Z macro-backtrace for more info)
4844help: consider further restricting type parameter `Y`
4945 |
@@ -56,7 +52,6 @@ error[E0277]: `X` doesn't implement `Debug`
5652LL | println!("{:?}", x);
5753 | ^ `X` cannot be formatted using `{:?}` because it doesn't implement `Debug`
5854 |
59- = note: required by `std::fmt::Debug::fmt`
6055 = note: this error originates in the macro `$crate::format_args_nl` (in Nightly builds, run with -Z macro-backtrace for more info)
6156help: consider further restricting this bound
6257 |
@@ -69,7 +64,6 @@ error[E0277]: `X` doesn't implement `Debug`
6964LL | println!("{:?}", x);
7065 | ^ `X` cannot be formatted using `{:?}` because it doesn't implement `Debug`
7166 |
72- = note: required by `std::fmt::Debug::fmt`
7367 = note: this error originates in the macro `$crate::format_args_nl` (in Nightly builds, run with -Z macro-backtrace for more info)
7468help: consider further restricting type parameter `X`
7569 |
0 commit comments