mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
452 B
Plaintext
15 lines
452 B
Plaintext
error[E0423]: expected function, tuple struct or tuple variant, found struct `Monster`
|
|
--> $DIR/issue-6702.rs:7:14
|
|
|
|
|
LL | / struct Monster {
|
|
LL | | damage: isize
|
|
LL | | }
|
|
| |_- `Monster` defined here
|
|
...
|
|
LL | let _m = Monster();
|
|
| ^^^^^^^^^ help: use struct literal syntax instead: `Monster { damage: val }`
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0423`.
|