]> git.lizzy.rs Git - rust.git/blob - src/test/ui/enum/enum-to-float-cast.stderr
Add 'src/tools/miri/' from commit '75dd959a3a40eb5b4574f8d2e23aa6efbeb33573'
[rust.git] / src / test / ui / enum / enum-to-float-cast.stderr
1 error[E0606]: casting `E` as `f32` is invalid
2   --> $DIR/enum-to-float-cast.rs:13:18
3    |
4 LL | static C0: f32 = E::L0 as f32;
5    |                  ^^^^^^^^^^^^
6    |
7    = help: cast through an integer first
8
9 error[E0606]: casting `F` as `f32` is invalid
10   --> $DIR/enum-to-float-cast.rs:14:18
11    |
12 LL | static C1: f32 = F::H1 as f32;
13    |                  ^^^^^^^^^^^^
14    |
15    = help: cast through an integer first
16
17 error: aborting due to 2 previous errors
18
19 For more information about this error, try `rustc --explain E0606`.