]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cenum_impl_drop_cast.stderr
Auto merge of #99028 - tmiasko:inline, r=estebank
[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
17 Future incompatibility report: Future breakage diagnostic:
18 error: cannot cast enum `E` into integer `u32` because it implements `Drop`
19   --> $DIR/cenum_impl_drop_cast.rs:15:13
20    |
21 LL |     let i = e as u32;
22    |             ^^^^^^^^
23    |
24 note: the lint level is defined here
25   --> $DIR/cenum_impl_drop_cast.rs:1:9
26    |
27 LL | #![deny(cenum_impl_drop_cast)]
28    |         ^^^^^^^^^^^^^^^^^^^^
29    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
30    = note: for more information, see issue #73333 <https://github.com/rust-lang/rust/issues/73333>
31