]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/mismatched_types/trait-bounds-cant-coerce.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / mismatched_types / trait-bounds-cant-coerce.stderr
index 485fae6d4d9ff36c731df41a3c65b3af965db222..80aef7fcbe8e2fcd785f219e9a857e52961b7d2d 100644 (file)
@@ -2,10 +2,17 @@ error[E0308]: mismatched types
   --> $DIR/trait-bounds-cant-coerce.rs:13:7
    |
 LL |     a(x);
-   |       ^ expected trait `Foo + Send`, found trait `Foo`
+   |     - ^ expected trait `Foo + Send`, found trait `Foo`
+   |     |
+   |     arguments to this function are incorrect
    |
    = note: expected struct `Box<(dyn Foo + Send + 'static)>`
               found struct `Box<(dyn Foo + 'static)>`
+note: function defined here
+  --> $DIR/trait-bounds-cant-coerce.rs:5:4
+   |
+LL | fn a(_x: Box<dyn Foo + Send>) {
+   |    ^ -----------------------
 
 error: aborting due to previous error