]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/structs/struct-pat-derived-error.stderr
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / structs / struct-pat-derived-error.stderr
index 921d060faa38bdcc1e18bbc0edaef617e261f462..c1a95636d34cb0040ca34d207cfe697d0380217f 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