summary refs log tree commit diff
path: root/src/test/ui/specialization/issue-59435.stderr
blob: 606d22ed07be76466a45b0187b51b8037db7a76b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0277]: the trait bound `MyStruct: Default` is not satisfied
  --> $DIR/issue-59435.rs:11:5
   |
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`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0277`.