]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cenum_impl_drop_cast.stderr
Merge commit 'e636b88aa180e8cab9e28802aac90adbc984234d' into clippyup
[rust.git] / src / test / ui / cenum_impl_drop_cast.stderr
1 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;
5    |             ^^^^^^^^
6    |
7 note: the lint level is defined here
8   --> $DIR/cenum_impl_drop_cast.rs:1:9
9    |
10 LL | #![deny(cenum_impl_drop_cast)]
11    |         ^^^^^^^^^^^^^^^^^^^^
12    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
13    = note: for more information, see issue #73333 <https://github.com/rust-lang/rust/issues/73333>
14
15 error: aborting due to previous error
16