]> git.proxmox.com Git - rustc.git/blob - src/test/ui/specialization/issue-59435.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / specialization / issue-59435.stderr
1 error[E0277]: the trait bound `MyStruct: Default` is not satisfied
2 --> $DIR/issue-59435.rs:11:5
3 |
4 LL | type MyType: Default;
5 | --------------------- required by `MyTrait::MyType`
6 ...
7 LL | default type MyType = MyStruct;
8 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Default` is not implemented for `MyStruct`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0277`.