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