summary refs log tree commit diff
path: root/src/test/ui/structs/struct-pat-derived-error.stderr
blob: 68b71efc106c27b007c9b357da349c25f0754f4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error[E0609]: no field `d` on type `&a`
  --> $DIR/struct-pat-derived-error.rs:18:31
   |
LL |         let a { x, y } = self.d; //~ ERROR no field `d` on type `&a`
   |                               ^

error[E0026]: struct `a` does not have fields named `x`, `y`
  --> $DIR/struct-pat-derived-error.rs:18:17
   |
LL |         let a { x, y } = self.d; //~ ERROR no field `d` on type `&a`
   |                 ^  ^ struct `a` does not have these fields

error[E0027]: pattern does not mention fields `b`, `c`
  --> $DIR/struct-pat-derived-error.rs:18:13
   |
LL |         let a { x, y } = self.d; //~ ERROR no field `d` on type `&a`
   |             ^^^^^^^^^^ missing fields `b`, `c`

error: aborting due to 3 previous errors

Some errors occurred: E0026, E0027, E0609.
For more information about an error, try `rustc --explain E0026`.