rust/src/test/ui/issues/issue-34255-1.stderr

14 lines
500 B
Plaintext
Raw Normal View History

error: expected type, found `42`
--> $DIR/issue-34255-1.rs:8:24
|
LL | Test::Drill(field: 42);
| - ^^ expected type
| |
| tried to parse a type due to this type ascription
|
= note: `#![feature(type_ascription)]` lets you annotate an expression with a type: `<expr>: <type>`
2020-02-07 06:07:02 -06:00
= note: see issue #23416 <https://github.com/rust-lang/rust/issues/23416> for more information
error: aborting due to previous error