mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
16 lines
458 B
Text
16 lines
458 B
Text
error: cast of an enum tuple constructor to an integer
|
|
--> $DIR/cast_enum_constructor.rs:13:13
|
|
|
|
|
LL | let _ = Foo::Y as usize;
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::cast-enum-constructor` implied by `-D warnings`
|
|
|
|
error: cast of an enum tuple constructor to an integer
|
|
--> $DIR/cast_enum_constructor.rs:14:13
|
|
|
|
|
LL | let _ = Foo::Y as isize;
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|