rust-clippy/tests/ui/crashes/ice-9445.stderr

14 lines
597 B
Text
Raw Normal View History

2023-06-16 16:02:11 +00:00
error: a `const` item should never be interior mutable
2024-02-17 12:16:29 +00:00
--> tests/ui/crashes/ice-9445.rs:1:1
2023-06-16 16:02:11 +00:00
|
LL | const UNINIT: core::mem::MaybeUninit<core::cell::Cell<&'static ()>> = core::mem::MaybeUninit::uninit();
| -----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| |
| make this a static item (maybe with lazy_static)
|
= note: `-D clippy::declare-interior-mutable-const` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::declare_interior_mutable_const)]`
2023-06-16 16:02:11 +00:00
error: aborting due to 1 previous error
2023-06-16 16:02:11 +00:00