2020-09-02 07:40:56 +00:00
|
|
|
error[E0277]: the trait bound `MyStruct: Default` is not satisfied
|
2020-06-23 08:52:42 +00:00
|
|
|
--> $DIR/issue-59435.rs:11:5
|
|
|
|
|
|
|
|
|
LL | type MyType: Default;
|
2020-06-27 20:36:35 +00:00
|
|
|
| ------- required by this bound in `MyTrait::MyType`
|
2020-06-23 08:52:42 +00:00
|
|
|
...
|
|
|
|
LL | default type MyType = MyStruct;
|
2020-09-02 07:40:56 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Default` is not implemented for `MyStruct`
|
2020-06-23 08:52:42 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|