]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/suggestions/boxed-variant-field.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / suggestions / boxed-variant-field.stderr
index 9a31dc89197e36209a295f4c8e319761ee1448c9..6dfb73480a2b88b7e30fbd9280cb6cbf760acea1 100644 (file)
@@ -2,10 +2,17 @@ error[E0308]: mismatched types
   --> $DIR/boxed-variant-field.rs:9:31
    |
 LL |         Ty::List(elem) => foo(elem),
-   |                               ^^^^ expected enum `Ty`, found struct `Box`
+   |                           --- ^^^^ expected enum `Ty`, found struct `Box`
+   |                           |
+   |                           arguments to this function are incorrect
    |
    = note: expected enum `Ty`
             found struct `Box<Ty>`
+note: function defined here
+  --> $DIR/boxed-variant-field.rs:6:4
+   |
+LL | fn foo(x: Ty) -> Ty {
+   |    ^^^ -----
 help: consider unboxing the value
    |
 LL |         Ty::List(elem) => foo(*elem),