blob: 73819a89d7533cded52b42dd55d4c564bea61a3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0124]: field `field1` is already declared
--> $DIR/E0124.rs:3:5
|
LL | field1: i32,
| ----------- `field1` first declared here
LL | field1: i32,
| ^^^^^^^^^^^ field already declared
error: aborting due to previous error
For more information about this error, try `rustc --explain E0124`.
|