]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/structs/struct-pat-derived-error.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / structs / struct-pat-derived-error.stderr
index c1a95636d34cb0040ca34d207cfe697d0380217f..a91e47657ab913d1bdc97cbb33c2aeb5aaed9832 100644 (file)
@@ -19,11 +19,11 @@ LL |         let A { x, y } = self.d;
 help: include the missing fields in the pattern
    |
 LL |         let A { x, y, b, c } = self.d;
-   |                     ^^^^^^^^
+   |                     ~~~~~~~~
 help: if you don't care about these missing fields, you can explicitly ignore them
    |
 LL |         let A { x, y, .. } = self.d;
-   |                     ^^^^^^
+   |                     ~~~~~~
 
 error: aborting due to 3 previous errors