mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 21:02:04 +00:00
13 lines
212 B
Rust
13 lines
212 B
Rust
//@ check-pass
|
|
#![allow(dead_code)]
|
|
|
|
struct TestStruct {
|
|
x: *const [isize; 2]
|
|
}
|
|
|
|
unsafe impl Sync for TestStruct {}
|
|
|
|
static TEST_VALUE : TestStruct = TestStruct{x: 0x1234 as *const [isize; 2]};
|
|
|
|
fn main() {}
|