rust/src/test/ui/struct-fields-decl-dupe.stderr

12 lines
343 B
Plaintext
Raw Normal View History

error[E0124]: field `foo` is already declared
--> $DIR/struct-fields-decl-dupe.rs:13:5
|
2018-02-23 00:42:32 +00:00
LL | foo: isize,
| ---------- `foo` first declared here
2018-02-23 00:42:32 +00:00
LL | foo: isize,
| ^^^^^^^^^^ field already declared
error: aborting due to previous error
2018-02-19 20:40:25 +00:00
If you want more information on this error, try using "rustc --explain E0124"