mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-29 15:48:52 +00:00
26 lines
552 B
Rust
26 lines
552 B
Rust
// Test for #118205, which causes a deadlock bug
|
|
//
|
|
//@ compile-flags: -Z threads=16
|
|
//@ build-pass
|
|
//@ compare-output-by-lines
|
|
|
|
pub static GLOBAL: isize = 3;
|
|
|
|
static GLOBAL0: isize = 4;
|
|
|
|
pub static GLOBAL2: &'static isize = &GLOBAL0;
|
|
|
|
pub fn verify_same(a: &'static isize) {
|
|
let a = a as *const isize as usize;
|
|
let b = &GLOBAL as *const isize as usize;
|
|
assert_eq!(a, b);
|
|
}
|
|
|
|
pub fn verify_same2(a: &'static isize) {
|
|
let a = a as *const isize as usize;
|
|
let b = GLOBAL2 as *const isize as usize;
|
|
assert_eq!(a, b);
|
|
}
|
|
|
|
fn main() {}
|