]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/specialization/issue-59435.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / specialization / issue-59435.stderr
index f3f8b022b01e12309f19b125aa03bf9c352bbfcd..606d22ed07be76466a45b0187b51b8037db7a76b 100644 (file)
@@ -1,11 +1,14 @@
 error[E0277]: the trait bound `MyStruct: Default` is not satisfied
   --> $DIR/issue-59435.rs:11:5
    |
-LL |     type MyType: Default;
-   |                  ------- required by this bound in `MyTrait::MyType`
-...
 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