mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
80fcd7c40e
Only suggest adding a zero to integers with a preceding dot when the change will result in a valid floating point literal. For example, `.0x0` should not be turned into `0.0x0`.
27 lines
634 B
Plaintext
27 lines
634 B
Plaintext
error: expected expression, found `.`
|
|
--> $DIR/recover-invalid-float-invalid.rs:7:9
|
|
|
|
|
LL | _ = .3u32;
|
|
| ^ expected expression
|
|
|
|
error: expected expression, found `.`
|
|
--> $DIR/recover-invalid-float-invalid.rs:12:9
|
|
|
|
|
LL | _ = .0b0;
|
|
| ^ expected expression
|
|
|
|
error: expected expression, found `.`
|
|
--> $DIR/recover-invalid-float-invalid.rs:17:9
|
|
|
|
|
LL | _ = .0o07;
|
|
| ^ expected expression
|
|
|
|
error: expected expression, found `.`
|
|
--> $DIR/recover-invalid-float-invalid.rs:22:9
|
|
|
|
|
LL | _ = .0x0ABC;
|
|
| ^ expected expression
|
|
|
|
error: aborting due to 4 previous errors
|
|
|