summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/issue-6702.stderr
blob: a118f94191df3647b132c610fb8487d812351e7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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`.