2019-01-20 15:59:35 -06:00
|
|
|
error: float literals must have an integer part
|
2019-01-20 02:37:06 -06:00
|
|
|
--> $DIR/issue-52496.rs:4:24
|
|
|
|
|
|
|
|
|
LL | let _ = Foo { bar: .5, baz: 42 };
|
2019-01-20 15:59:35 -06:00
|
|
|
| ^^ help: must have an integer part: `0.5`
|
2019-01-20 02:37:06 -06:00
|
|
|
|
2022-07-07 16:59:54 -05:00
|
|
|
error: expected one of `,`, `:`, or `}`, found `.`
|
2019-01-20 16:25:53 -06:00
|
|
|
--> $DIR/issue-52496.rs:8:22
|
2019-01-20 02:37:06 -06:00
|
|
|
|
|
|
|
|
LL | let _ = Foo { bar.into(), bat: -1, . };
|
2022-07-07 17:20:08 -05:00
|
|
|
| --- - ^ expected one of `,`, `:`, or `}`
|
|
|
|
| | |
|
|
|
|
| | help: try naming a field: `bar:`
|
2019-01-20 02:37:06 -06:00
|
|
|
| while parsing this struct
|
|
|
|
|
|
|
|
error: expected identifier, found `.`
|
2019-01-20 16:25:53 -06:00
|
|
|
--> $DIR/issue-52496.rs:8:40
|
2019-01-20 02:37:06 -06:00
|
|
|
|
|
|
|
|
LL | let _ = Foo { bar.into(), bat: -1, . };
|
|
|
|
| --- ^ expected identifier
|
|
|
|
| |
|
|
|
|
| while parsing this struct
|
|
|
|
|
|
|
|
error[E0063]: missing field `bat` in initializer of `Foo`
|
|
|
|
--> $DIR/issue-52496.rs:4:13
|
|
|
|
|
|
|
|
|
LL | let _ = Foo { bar: .5, baz: 42 };
|
|
|
|
| ^^^ missing `bat`
|
|
|
|
|
2021-02-20 11:32:02 -06:00
|
|
|
error[E0063]: missing fields `bar` and `baz` in initializer of `Foo`
|
2019-01-20 16:25:53 -06:00
|
|
|
--> $DIR/issue-52496.rs:8:13
|
2019-01-20 02:37:06 -06:00
|
|
|
|
|
|
|
|
LL | let _ = Foo { bar.into(), bat: -1, . };
|
2021-02-20 11:32:02 -06:00
|
|
|
| ^^^ missing `bar` and `baz`
|
2019-01-20 02:37:06 -06:00
|
|
|
|
2019-01-20 17:16:36 -06:00
|
|
|
error: aborting due to 5 previous errors
|
2019-01-20 02:37:06 -06:00
|
|
|
|
2019-01-20 17:16:36 -06:00
|
|
|
For more information about this error, try `rustc --explain E0063`.
|