2022-03-24 14:50:04 +01:00
|
|
|
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`
|
2023-08-01 14:02:21 +02:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::cast_enum_constructor)]`
|
2022-03-24 14:50:04 +01:00
|
|
|
|
|
|
|
error: cast of an enum tuple constructor to an integer
|
2023-08-24 21:32:12 +02:00
|
|
|
--> $DIR/cast_enum_constructor.rs:16:13
|
2022-03-24 14:50:04 +01:00
|
|
|
|
|
|
|
|
LL | let _ = Foo::Y as isize;
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|