mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-13 09:05:00 +00:00
6 lines
258 B
Rust
6 lines
258 B
Rust
const UNINIT: core::mem::MaybeUninit<core::cell::Cell<&'static ()>> = core::mem::MaybeUninit::uninit();
|
|
//~^ ERROR: a `const` item should never be interior mutable
|
|
//~| NOTE: `-D clippy::declare-interior-mutable-const` implied by `-D warnings`
|
|
|
|
fn main() {}
|