30 lines
975 B
Rust
30 lines
975 B
Rust
![]() |
use std::cell::*;
|
||
|
|
||
|
// not ok, because this would create a silent constant with interior mutability.
|
||
|
// the rules could be relaxed in the future
|
||
|
static FOO: Wrap<*mut u32> = Wrap(Cell::new(42).as_ptr());
|
||
|
//~^ ERROR cannot borrow a constant which may contain interior mutability
|
||
|
|
||
|
static FOO3: Wrap<Cell<u32>> = Wrap(Cell::new(42));
|
||
|
// ok
|
||
|
static FOO4: Wrap<*mut u32> = Wrap(FOO3.0.as_ptr());
|
||
|
|
||
|
// not ok, because the `as_ptr` call takes a reference to a type with interior mutability
|
||
|
// which is not allowed in constants
|
||
|
const FOO2: *mut u32 = Cell::new(42).as_ptr();
|
||
|
//~^ ERROR cannot borrow a constant which may contain interior mutability
|
||
|
|
||
|
struct IMSafeTrustMe(UnsafeCell<u32>);
|
||
|
unsafe impl Send for IMSafeTrustMe {}
|
||
|
unsafe impl Sync for IMSafeTrustMe {}
|
||
|
|
||
|
static BAR: IMSafeTrustMe = IMSafeTrustMe(UnsafeCell::new(5));
|
||
|
|
||
|
|
||
|
struct Wrap<T>(T);
|
||
|
unsafe impl<T> Send for Wrap<T> {}
|
||
|
unsafe impl<T> Sync for Wrap<T> {}
|
||
|
|
||
|
static BAR_PTR: Wrap<*mut u32> = Wrap(BAR.0.get());
|
||
|
|
||
|
fn main() {}
|