mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
15 lines
234 B
Rust
15 lines
234 B
Rust
//@ run-pass
|
|
|
|
static mut FOO: Foo = Foo {
|
|
field: &mut [42] as *mut [i32] as *mut i32,
|
|
};
|
|
|
|
struct Foo {
|
|
field: *mut i32,
|
|
}
|
|
|
|
unsafe impl Sync for Foo {}
|
|
|
|
fn main() {
|
|
assert_eq!(unsafe { *FOO.field = 69; *FOO.field }, 69);
|
|
}
|