]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/nll/relate_tys/trait-hrtb.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / nll / relate_tys / trait-hrtb.stderr
index 4df2f352522a3e3078a283bf3b0e83ebb233d9ac..60a7f204446806872f27e12670de0bfe46849759 100644 (file)
@@ -1,8 +1,12 @@
-error: higher-ranked subtype error
+error[E0308]: mismatched types
   --> $DIR/trait-hrtb.rs:15:39
    |
 LL |     let y: Box<dyn for<'a> Foo<'a>> = x;
-   |                                       ^
+   |                                       ^ one type is more general than the other
+   |
+   = note: expected trait object `dyn for<'r> Foo<'r>`
+              found trait object `dyn Foo<'_>`
 
 error: aborting due to previous error
 
+For more information about this error, try `rustc --explain E0308`.