rust/src/test/ui/specialization/issue-59435.stderr

13 lines
456 B
Plaintext
Raw Normal View History

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;
| ------- required by this bound in `MyTrait::MyType`
2020-06-23 08:52:42 +00:00
...
LL | default type MyType = MyStruct;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 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`.