rust/tests/ui/did_you_mean/issue-49746-unicode-confusable-in-float-literal-expt.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
827 B
Plaintext
Raw Normal View History

error: expected at least one digit in exponent
--> $DIR/issue-49746-unicode-confusable-in-float-literal-expt.rs:1:47
|
LL | const UNIVERSAL_GRAVITATIONAL_CONSTANT: f64 = 6.674e11; // m³⋅kg⁻¹⋅s⁻²
| ^^^^^^
error: unknown start of token: \u{2212}
2018-12-25 15:56:47 +00:00
--> $DIR/issue-49746-unicode-confusable-in-float-literal-expt.rs:1:53
|
2018-05-26 04:57:02 +00:00
LL | const UNIVERSAL_GRAVITATIONAL_CONSTANT: f64 = 6.674e11; // m³⋅kg⁻¹⋅s⁻²
| ^
|
help: Unicode character '' (Minus Sign) looks like '-' (Minus/Hyphen), but it is not
|
2018-05-26 04:57:02 +00:00
LL | const UNIVERSAL_GRAVITATIONAL_CONSTANT: f64 = 6.674e-11; // m³⋅kg⁻¹⋅s⁻²
| ~
error: aborting due to 2 previous errors