]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-51102.stderr
New upstream version 1.60.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-51102.stderr
1 error[E0026]: struct `SimpleStruct` does not have a field named `state`
2 --> $DIR/issue-51102.rs:13:17
3 |
4 LL | state: 0,
5 | ^^^^^
6 | |
7 | struct `SimpleStruct` does not have this field
8 | help: `SimpleStruct` has a field named `no_state_here`
9
10 error[E0025]: field `no_state_here` bound multiple times in the pattern
11 --> $DIR/issue-51102.rs:24:17
12 |
13 LL | no_state_here: 0,
14 | ---------------- first use of `no_state_here`
15 LL | no_state_here: 1
16 | ^^^^^^^^^^^^^^^^ multiple uses of `no_state_here` in pattern
17
18 error[E0026]: variant `SimpleEnum::NoState` does not have a field named `state`
19 --> $DIR/issue-51102.rs:33:17
20 |
21 LL | state: 0
22 | ^^^^^ variant `SimpleEnum::NoState` does not have this field
23
24 error: aborting due to 3 previous errors
25
26 Some errors have detailed explanations: E0025, E0026.
27 For more information about an error, try `rustc --explain E0025`.