summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-9445.stderr
blob: f97b4536e129a5f72a9ebb6d395b4450702bfb83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error: a `const` item should never be interior mutable
  --> $DIR/ice-9445.rs:1:1
   |
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)]`

error: aborting due to 1 previous error