We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5809b0 commit f3dfe80Copy full SHA for f3dfe80
src/test/ui/cenum_impl_drop_cast.rs
@@ -13,6 +13,6 @@ impl Drop for E {
13
fn main() {
14
let e = E::A;
15
let i = e as u32;
16
- //~^ ERROR Cast `enum` implementing `Drop` `E` to integer `u32`
+ //~^ ERROR cannot cast enum `E` into integer `u32` because it implements `Drop`
17
//~| WARN this was previously accepted
18
}
src/test/ui/cenum_impl_drop_cast.stderr
@@ -1,4 +1,4 @@
1
-error: Cast `enum` implementing `Drop` `E` to integer `u32`
+error: cannot cast enum `E` into integer `u32` because it implements `Drop`
2
--> $DIR/cenum_impl_drop_cast.rs:15:13
3
|
4
LL | let i = e as u32;
0 commit comments