rust/tests/ui/enum/enum-to-float-cast.stderr

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

20 lines
526 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0606]: casting `E` as `f32` is invalid
2018-12-25 09:56:47 -06:00
--> $DIR/enum-to-float-cast.rs:13:18
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | static C0: f32 = E::L0 as f32;
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^
|
= help: cast through an integer first
error[E0606]: casting `F` as `f32` is invalid
2018-12-25 09:56:47 -06:00
--> $DIR/enum-to-float-cast.rs:14:18
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | static C1: f32 = F::H1 as f32;
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^
|
= help: cast through an integer first
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0606`.