2020-09-02 07:40:56 +00:00
error[E0277]: `impl Sized` doesn't implement `Debug`
--> $DIR/bound-suggestions.rs:9:22
2019-12-26 12:43:33 +00:00
|
LL | println!("{:?}", t);
2020-09-02 07:40:56 +00:00
| ^ `impl Sized` cannot be formatted using `{:?}` because it doesn't implement `Debug`
2019-12-26 12:43:33 +00:00
|
2022-06-21 02:25:52 +00:00
= note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
2020-03-14 02:28:14 +00:00
help: consider further restricting this bound
|
2021-03-30 09:56:39 +00:00
LL | fn test_impl(t: impl Sized + std::fmt::Debug) {
2021-06-22 02:07:19 +00:00
| +++++++++++++++++
2019-12-26 12:43:33 +00:00
2020-09-02 07:40:56 +00:00
error[E0277]: `T` doesn't implement `Debug`
--> $DIR/bound-suggestions.rs:15:22
2019-12-26 12:43:33 +00:00
|
LL | println!("{:?}", t);
2020-09-02 07:40:56 +00:00
| ^ `T` cannot be formatted using `{:?}` because it doesn't implement `Debug`
2019-12-26 12:43:33 +00:00
|
2022-06-21 02:25:52 +00:00
= note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
2020-03-14 02:28:14 +00:00
help: consider restricting type parameter `T`
|
2021-03-30 09:56:39 +00:00
LL | fn test_no_bounds<T: std::fmt::Debug>(t: T) {
2021-06-22 02:07:19 +00:00
| +++++++++++++++++
2019-12-26 12:43:33 +00:00
2020-09-02 07:40:56 +00:00
error[E0277]: `T` doesn't implement `Debug`
--> $DIR/bound-suggestions.rs:21:22
2019-12-26 12:43:33 +00:00
|
LL | println!("{:?}", t);
2020-09-02 07:40:56 +00:00
| ^ `T` cannot be formatted using `{:?}` because it doesn't implement `Debug`
2019-12-26 12:43:33 +00:00
|
2022-06-21 02:25:52 +00:00
= note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
2020-03-14 02:28:14 +00:00
help: consider further restricting this bound
|
2021-03-30 09:56:39 +00:00
LL | fn test_one_bound<T: Sized + std::fmt::Debug>(t: T) {
2021-06-22 02:07:19 +00:00
| +++++++++++++++++
2019-12-26 12:43:33 +00:00
2020-09-02 07:40:56 +00:00
error[E0277]: `Y` doesn't implement `Debug`
--> $DIR/bound-suggestions.rs:27:30
2019-12-26 12:43:33 +00:00
|
LL | println!("{:?} {:?}", x, y);
2020-09-02 07:40:56 +00:00
| ^ `Y` cannot be formatted using `{:?}` because it doesn't implement `Debug`
2019-12-26 12:43:33 +00:00
|
2022-06-21 02:25:52 +00:00
= note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
2020-03-14 02:28:14 +00:00
help: consider further restricting type parameter `Y`
|
2021-03-30 09:56:39 +00:00
LL | fn test_no_bounds_where<X, Y>(x: X, y: Y) where X: std::fmt::Debug, Y: std::fmt::Debug {
2021-06-22 02:07:19 +00:00
| ~~~~~~~~~~~~~~~~~~~~
2019-12-26 12:43:33 +00:00
2020-09-02 07:40:56 +00:00
error[E0277]: `X` doesn't implement `Debug`
--> $DIR/bound-suggestions.rs:33:22
2019-12-26 12:43:33 +00:00
|
LL | println!("{:?}", x);
2020-09-02 07:40:56 +00:00
| ^ `X` cannot be formatted using `{:?}` because it doesn't implement `Debug`
2019-12-26 12:43:33 +00:00
|
2022-06-21 02:25:52 +00:00
= note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
2020-03-14 02:28:14 +00:00
help: consider further restricting this bound
|
2021-03-30 09:56:39 +00:00
LL | fn test_one_bound_where<X>(x: X) where X: Sized + std::fmt::Debug {
2021-06-22 02:07:19 +00:00
| +++++++++++++++++
2019-12-26 12:43:33 +00:00
2020-09-02 07:40:56 +00:00
error[E0277]: `X` doesn't implement `Debug`
--> $DIR/bound-suggestions.rs:39:22
2019-12-26 12:43:33 +00:00
|
LL | println!("{:?}", x);
2020-09-02 07:40:56 +00:00
| ^ `X` cannot be formatted using `{:?}` because it doesn't implement `Debug`
2019-12-26 12:43:33 +00:00
|
2022-06-21 02:25:52 +00:00
= note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
2022-03-14 14:56:37 +00:00
help: consider further restricting this bound
2020-03-14 02:28:14 +00:00
|
2022-03-14 14:56:37 +00:00
LL | fn test_many_bounds_where<X>(x: X) where X: Sized + std::fmt::Debug, X: Sized {
| +++++++++++++++++
2019-12-26 12:43:33 +00:00
2021-01-19 20:44:49 +00:00
error[E0277]: the size for values of type `Self` cannot be known at compilation time
2024-02-07 02:42:01 +00:00
--> $DIR/bound-suggestions.rs:45:46
2021-01-19 20:44:49 +00:00
|
LL | const SIZE: usize = core::mem::size_of::<Self>();
| ^^^^ doesn't have a size known at compile-time
2021-06-10 11:52:00 +00:00
|
2024-01-24 21:29:15 +00:00
note: required by an implicit `Sized` bound in `std::mem::size_of`
2021-07-31 16:26:55 +00:00
--> $SRC_DIR/core/src/mem/mod.rs:LL:COL
2021-01-19 20:44:49 +00:00
help: consider further restricting `Self`
|
LL | trait Foo<T>: Sized {
2021-06-22 02:07:19 +00:00
| +++++++
2021-01-19 20:44:49 +00:00
error[E0277]: the size for values of type `Self` cannot be known at compilation time
2024-02-07 02:42:01 +00:00
--> $DIR/bound-suggestions.rs:51:46
2021-01-19 20:44:49 +00:00
|
LL | const SIZE: usize = core::mem::size_of::<Self>();
| ^^^^ doesn't have a size known at compile-time
2021-06-10 11:52:00 +00:00
|
2024-01-24 21:29:15 +00:00
note: required by an implicit `Sized` bound in `std::mem::size_of`
2021-07-31 16:26:55 +00:00
--> $SRC_DIR/core/src/mem/mod.rs:LL:COL
2021-01-19 20:44:49 +00:00
help: consider further restricting `Self`
|
LL | trait Bar: std::fmt::Display + Sized {
2021-06-22 02:07:19 +00:00
| +++++++
2021-01-19 20:44:49 +00:00
error[E0277]: the size for values of type `Self` cannot be known at compilation time
2024-02-07 02:42:01 +00:00
--> $DIR/bound-suggestions.rs:57:46
2021-01-19 20:44:49 +00:00
|
LL | const SIZE: usize = core::mem::size_of::<Self>();
| ^^^^ doesn't have a size known at compile-time
2021-06-10 11:52:00 +00:00
|
2024-01-24 21:29:15 +00:00
note: required by an implicit `Sized` bound in `std::mem::size_of`
2021-07-31 16:26:55 +00:00
--> $SRC_DIR/core/src/mem/mod.rs:LL:COL
2021-01-19 20:44:49 +00:00
help: consider further restricting `Self`
|
LL | trait Baz: Sized where Self: std::fmt::Display {
2021-06-22 02:07:19 +00:00
| +++++++
2021-01-19 20:44:49 +00:00
error[E0277]: the size for values of type `Self` cannot be known at compilation time
2024-02-07 02:42:01 +00:00
--> $DIR/bound-suggestions.rs:63:46
2021-01-19 20:44:49 +00:00
|
LL | const SIZE: usize = core::mem::size_of::<Self>();
| ^^^^ doesn't have a size known at compile-time
2021-06-10 11:52:00 +00:00
|
2024-01-24 21:29:15 +00:00
note: required by an implicit `Sized` bound in `std::mem::size_of`
2021-07-31 16:26:55 +00:00
--> $SRC_DIR/core/src/mem/mod.rs:LL:COL
2021-01-19 20:44:49 +00:00
help: consider further restricting `Self`
|
LL | trait Qux<T>: Sized where Self: std::fmt::Display {
2021-06-22 02:07:19 +00:00
| +++++++
2021-01-19 20:44:49 +00:00
error[E0277]: the size for values of type `Self` cannot be known at compilation time
2024-02-07 02:42:01 +00:00
--> $DIR/bound-suggestions.rs:69:46
2021-01-19 20:44:49 +00:00
|
LL | const SIZE: usize = core::mem::size_of::<Self>();
| ^^^^ doesn't have a size known at compile-time
2021-06-10 11:52:00 +00:00
|
2024-01-24 21:29:15 +00:00
note: required by an implicit `Sized` bound in `std::mem::size_of`
2021-07-31 16:26:55 +00:00
--> $SRC_DIR/core/src/mem/mod.rs:LL:COL
2021-01-19 20:44:49 +00:00
help: consider further restricting `Self`
|
LL | trait Bat<T>: std::fmt::Display + Sized {
2021-06-22 02:07:19 +00:00
| +++++++
2021-01-19 20:44:49 +00:00
error: aborting due to 11 previous errors
2019-12-26 12:43:33 +00:00
For more information about this error, try `rustc --explain E0277`.