os-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
Text
Raw Normal View History

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