2019-03-12 21:27:10 -05:00
|
|
|
error: expected type, found `42`
|
|
|
|
--> $DIR/issue-34255-1.rs:8:24
|
|
|
|
|
|
|
|
|
LL | Test::Drill(field: 42);
|
|
|
|
| ^^ expecting a type here because of type ascription
|
|
|
|
|
|
2019-05-30 15:41:09 -05:00
|
|
|
= note: #![feature(type_ascription)] lets you annotate an expression with a type: `<expr>: <type>`
|
2019-03-22 22:14:20 -05:00
|
|
|
note: this expression expects an ascribed type after the colon
|
2019-03-12 21:27:10 -05:00
|
|
|
--> $DIR/issue-34255-1.rs:8:17
|
|
|
|
|
|
|
|
|
LL | Test::Drill(field: 42);
|
|
|
|
| ^^^^^
|
|
|
|
= help: this might be indicative of a syntax error elsewhere
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|