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
|
12 | foo: isize,
| ---------- `foo` first declared here
13 | foo: isize,
| ^^^^^^^^^^ field already declared
error: aborting due to previous error
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0124"