You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mutable borrows and shared borrows to values with interior mutability
86
86
are not allowed to refer to [lifetime-extended temporaries in the top-level scope of a `const` or `static` initializer expression][lifetime-extension-const].
87
87
88
+
```rust,compile_fail,E0492
89
+
# use core::sync::atomic::AtomicU8;
90
+
const C: &AtomicU8 = &AtomicU8::new(0); // ERROR not allowed
0 commit comments