2016-12-01 01:35:25 +03:00
|
|
|
error[E0423]: expected function, found struct `Monster`
|
2016-12-01 01:35:25 +03:00
|
|
|
--> $DIR/issue-6702.rs:17:14
|
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _m = Monster(); //~ ERROR expected function, found struct `Monster`
|
2016-12-01 01:35:25 +03:00
|
|
|
| ^^^^^^^ did you mean `Monster { /* fields */ }`?
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2017-07-02 13:49:30 +03:00
|
|
|
error: aborting due to previous error
|
2016-12-01 01:35:25 +03:00
|
|
|
|
2018-02-19 21:40:25 +01:00
|
|
|
If you want more information on this error, try using "rustc --explain E0423"
|