mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
17 lines
549 B
Text
17 lines
549 B
Text
error: cast of an enum tuple constructor to an integer
|
|
--> tests/ui/cast_enum_constructor.rs:13:13
|
|
|
|
|
LL | let _ = Foo::Y as usize;
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::cast-enum-constructor` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::cast_enum_constructor)]`
|
|
|
|
error: cast of an enum tuple constructor to an integer
|
|
--> tests/ui/cast_enum_constructor.rs:16:13
|
|
|
|
|
LL | let _ = Foo::Y as isize;
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|