mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
20 lines
637 B
Plaintext
20 lines
637 B
Plaintext
error[E0277]: the trait bound `MyStruct: Default` is not satisfied
|
|
--> $DIR/issue-59435.rs:11:27
|
|
|
|
|
LL | default type MyType = MyStruct;
|
|
| ^^^^^^^^ the trait `Default` is not implemented for `MyStruct`
|
|
|
|
|
note: required by a bound in `MyTrait::MyType`
|
|
--> $DIR/issue-59435.rs:7:18
|
|
|
|
|
LL | type MyType: Default;
|
|
| ^^^^^^^ required by this bound in `MyTrait::MyType`
|
|
help: consider annotating `MyStruct` with `#[derive(Default)]`
|
|
|
|
|
LL | #[derive(Default)]
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|